IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 20, 2007, 1:56:28 PM (19 years ago)
Author:
magnier
Message:

adding higher order terms

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_02_branch/psModules/src/objects/pmResiduals.c

    r12931 r12940  
    44 *
    55 * @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 $
    88 * Copyright 2004 IfA, University of Hawaii
    99 */
     
    2020    if (resid == NULL) return;
    2121
    22     psFree (resid->image);
     22    psFree (resid->Ro);
     23    psFree (resid->Rx);
     24    psFree (resid->Ry);
    2325    psFree (resid->weight);
    2426    psFree (resid->mask);
     
    3739    nY = (nY % 2) ? nY : nY + 1;
    3840
    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);
    4044    resid->weight = psImageAlloc (nX, nY, PS_TYPE_F32);
    4145    resid->mask   = psImageAlloc (nX, nY, PS_TYPE_U8);
Note: See TracChangeset for help on using the changeset viewer.