- Timestamp:
- Apr 20, 2007, 1:56:28 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_02_branch/psModules/src/objects/pmResiduals.c
r12931 r12940 4 4 * 5 5 * @author EAM, IfA 6 * @version $Revision: 1.1.2. 1$ $Name: not supported by cvs2svn $7 * @date $Date: 2007-04-20 02:31:41$6 * @version $Revision: 1.1.2.2 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2007-04-20 23:56:28 $ 8 8 * Copyright 2004 IfA, University of Hawaii 9 9 */ … … 20 20 if (resid == NULL) return; 21 21 22 psFree (resid->image); 22 psFree (resid->Ro); 23 psFree (resid->Rx); 24 psFree (resid->Ry); 23 25 psFree (resid->weight); 24 26 psFree (resid->mask); … … 37 39 nY = (nY % 2) ? nY : nY + 1; 38 40 39 resid->image = psImageAlloc (nX, nY, PS_TYPE_F32); 41 resid->Ro = psImageAlloc (nX, nY, PS_TYPE_F32); 42 resid->Rx = psImageAlloc (nX, nY, PS_TYPE_F32); 43 resid->Ry = psImageAlloc (nX, nY, PS_TYPE_F32); 40 44 resid->weight = psImageAlloc (nX, nY, PS_TYPE_F32); 41 45 resid->mask = psImageAlloc (nX, nY, PS_TYPE_U8);
Note:
See TracChangeset
for help on using the changeset viewer.
