IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 10, 2010, 7:34:39 PM (16 years ago)
Author:
eugene
Message:

updates from eam_branches/20091201 (substantially changes to the kernel matching code; updates to pmDetection container, added pmPattern, etc)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/detrend/pmPattern.h

    r24903 r26893  
    1818/// @{
    1919
     20#define PM_PATTERN_ROW_CORRECTION "PATTERN.ROW.CORRECTION" // Pattern row correction on analysis metadata
     21#define PM_PATTERN_CELL_CORRECTION "PATTERN.CELL.CORRECTION" // Pattern cell correction on analysis metadata
     22
    2023/// Fit and remove pattern noise over rows
    2124bool pmPatternRow(
     
    3134    );
    3235
     36/// Apply previously measured row pattern correction
     37bool pmPatternRowApply(pmReadout *ro,   ///< Readout to correct
     38                       psImageMaskType maskBad ///< Mask value to give bad pixels
     39                       );
     40
     41/// Fix the background on cells known to be troublesome
     42bool pmPatternCell(
     43    pmChip *chip,                       ///< Chip to correct
     44    const psVector *tweak,              ///< U8 vector indicating whether to tweak the corresponding cell
     45    psStatsOptions bgStat,              ///< Statistic to use for background measurement
     46    psStatsOptions cellStat,            ///< Statistic to use for combination of cell background measurements
     47    psImageMaskType maskVal,            ///< Mask value to use
     48    psImageMaskType maskBad             ///< Mask value to give bad pixels
     49    );
     50
     51/// Apply previously measured cell pattern correction
     52bool pmPatternCellApply(pmReadout *ro,          ///< Readout to correct
     53                        psImageMaskType maskBad ///< Mask value to give bad pixels
     54                        );
     55
     56
    3357/// @}
    3458#endif
Note: See TracChangeset for help on using the changeset viewer.