Changeset 20307 for trunk/psModules/src/objects/pmModel.c
- Timestamp:
- Oct 21, 2008, 4:11:36 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/objects/pmModel.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/objects/pmModel.c
r15977 r20307 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1.2 2$ $Name: not supported by cvs2svn $9 * @date $Date: 2008- 01-02 20:36:36$8 * @version $Revision: 1.23 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-10-22 02:11:08 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 222 222 psImage *myRx = NULL; 223 223 psImage *myRy = NULL; 224 psImageInterpolat eOptions*Ro = NULL;225 psImageInterpolat eOptions*Rx = NULL;226 psImageInterpolat eOptions*Ry = NULL;224 psImageInterpolation *Ro = NULL; 225 psImageInterpolation *Rx = NULL; 226 psImageInterpolation *Ry = NULL; 227 227 if (model->residuals && (mode & (PM_MODEL_OP_RES0 | PM_MODEL_OP_RES1))) { 228 228 // if the residual image and object image don't match, … … 274 274 } 275 275 276 Ro = psImageInterpolat eOptionsAlloc(PS_INTERPOLATE_BILINEAR, myRo, NULL, mask, 0, 0.0, 0.0, 1, 0, 0.0);277 Rx = psImageInterpolat eOptionsAlloc(PS_INTERPOLATE_BILINEAR, myRx, NULL, NULL, 0, 0.0, 0.0, 1, 0, 0.0);278 Ry = psImageInterpolat eOptionsAlloc(PS_INTERPOLATE_BILINEAR, myRy, NULL, NULL, 0, 0.0, 0.0, 1, 0, 0.0);276 Ro = psImageInterpolationAlloc(PS_INTERPOLATE_BILINEAR, myRo, NULL, mask, 0, 0.0, 0.0, 1, 0, 0.0, 0); 277 Rx = psImageInterpolationAlloc(PS_INTERPOLATE_BILINEAR, myRx, NULL, NULL, 0, 0.0, 0.0, 1, 0, 0.0, 0); 278 Ry = psImageInterpolationAlloc(PS_INTERPOLATE_BILINEAR, myRy, NULL, NULL, 0, 0.0, 0.0, 1, 0, 0.0, 0); 279 279 280 280 }
Note:
See TracChangeset
for help on using the changeset viewer.
