IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 16608


Ignore:
Timestamp:
Feb 22, 2008, 10:05:17 AM (18 years ago)
Author:
Paul Price
Message:

Didn't need offsets stored in buffer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/imcombine/pmStack.c

    r16607 r16608  
    88 *  @author GLG, MHPCC
    99 *
    10  *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2008-02-22 19:50:56 $
     10 *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2008-02-22 20:05:17 $
    1212 *  Copyright 2004-2007 Institute for Astronomy, University of Hawaii
    1313 *
     
    4343    psVector *weights;                  // Pixel weights
    4444    psVector *sort;                     // Buffer for sorting (to get a robust estimator of the standard dev)
    45 #if 0
    46     int x0, y0;                         // Offset from original image to combination region
    47     int nx, ny;                         // Number of pixels to combine
    48 #endif
    4945} combineBuffer;
    5046
     
    6965    buffer->weights = psVectorAlloc(numImages, PS_TYPE_F32);
    7066    buffer->sort = psVectorAlloc(numImages, PS_TYPE_F32);
    71 
    72 #if 0
    73     buffer->x0 = 0;
    74     buffer->y0 = 0;
    75     buffer->nx = 0;
    76     buffer->ny = 0;
    77 #endif
    78 
    7967    return buffer;
    8068}
Note: See TracChangeset for help on using the changeset viewer.