Changeset 967
- Timestamp:
- Jun 9, 2004, 3:13:16 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/modules/include/phase2.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/modules/include/phase2.h
r962 r967 42 42 typedef struct { 43 43 const int x0, y0; ///< Offset to region 44 const int n Row, nCol;///< Size of region44 const int nX, nY; ///< Size of region 45 45 } psImageRegion; 46 46 … … 48 48 psImageRegion *psImageRegionAlloc(int x0, ///< x offset to region 49 49 int y0, ///< y offset to region 50 int n Row, ///< Number of rows in region51 int n Col ///< Number of columns in region50 int nX, ///< Size of region in x 51 int nY ///< Size of region in y 52 52 ); 53 53 /** Destructor */ … … 61 61 PS_OVERSCAN_COLUMNS = 2, ///< Subtract columns 62 62 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 64 65 } psOverscanAxis; 65 66 … … 117 118 const psImage *mask, ///< Bad pixel mask to apply 118 119 int maskVal, ///< Mask the pixels for which mask & maskVal > 0. 120 float sat, ///< Saturation level: pixels brighter than this level are masked 119 121 int grow ///< Radius to grow the bad pixels 120 122 );
Note:
See TracChangeset
for help on using the changeset viewer.
