IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 967


Ignore:
Timestamp:
Jun 9, 2004, 3:13:16 PM (22 years ago)
Author:
Paul Price
Message:

Changed nRow,nCol to nX,nY.
Added PS_OVERSCAN_ALL.
Added float sat to maskBadPixels.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/modules/include/phase2.h

    r962 r967  
    4242typedef struct {
    4343    const int x0, y0;                   ///< Offset to region
    44     const int nRow, nCol;               ///< Size of region
     44    const int nX, nY;                   ///< Size of region
    4545} psImageRegion;
    4646
     
    4848psImageRegion *psImageRegionAlloc(int x0, ///< x offset to region
    4949                                  int y0, ///< y offset to region
    50                                   int nRow, ///< Number of rows in region
    51                                   int nCol ///< Number of columns in region
     50                                  int nX, ///< Size of region in x
     51                                  int nY ///< Size of region in y
    5252                                  );
    5353/** Destructor */
     
    6161    PS_OVERSCAN_COLUMNS = 2,            ///< Subtract columns
    6262    PS_OVERSCAN_ROWS_FIT = -1,          ///< Subtract a fit to rows
    63     PS_OVERSCAN_COLUMNS_FIT = -2        ///< Subtract a fit to columns
     63    PS_OVERSCAN_COLUMNS_FIT = -2,       ///< Subtract a fit to columns
     64    PS_OVERSCAN_ALL = 3                 ///< Subtract the statistic of all pixels in overscan region
    6465} psOverscanAxis;
    6566
     
    117118                                 const psImage *mask, ///< Bad pixel mask to apply
    118119                                 int maskVal, ///< Mask the pixels for which mask & maskVal > 0.
     120                                 float sat, ///< Saturation level: pixels brighter than this level are masked
    119121                                 int grow ///< Radius to grow the bad pixels
    120122                                 );
Note: See TracChangeset for help on using the changeset viewer.