Changeset 1465
- Timestamp:
- Aug 10, 2004, 4:39:30 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/modules/include/phase2.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/modules/include/phase2.h
r1438 r1465 79 79 /** Mask values */ 80 80 typedef enum { 81 PM_MASK_TRAP ,///< The pixel is a charge trap82 PM_MASK_BADCOL ,///< The pixel is a bad column83 PM_MASK_SAT ,///< The pixel is saturated84 PM_MASK_FLAT ,///< The pixel is non-positive in the flat-field85 PM_MASK_CR_MORPH ///< The pixel is determined to be a cosmic ray, from morphology81 PM_MASK_TRAP = 0x0001, ///< The pixel is a charge trap 82 PM_MASK_BADCOL = 0x0002, ///< The pixel is a bad column 83 PM_MASK_SAT = 0x0004, ///< The pixel is saturated 84 PM_MASK_FLAT = 0x0008, ///< The pixel is non-positive in the flat-field 85 PM_MASK_CR_MORPH = 0x000F, ///< The pixel is determined to be a cosmic ray, from morphology 86 86 } pmMaskValue; 87 87 … … 89 89 psReadout *pmMaskBadPixels(psReadout *in, ///< Image to be masked, and output 90 90 const psImage *mask, ///< Bad pixel mask to apply 91 int maskVal, ///< Mask the pixels for which mask & maskVal > 0.91 unsigned int maskVal, ///< Mask the pixels for which mask & maskVal > 0. 92 92 float sat, ///< Saturation level: pixels brighter than this level are masked 93 93 int grow ///< Radius to grow the bad pixels
Note:
See TracChangeset
for help on using the changeset viewer.
