IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 28, 2008, 1:49:32 PM (18 years ago)
Author:
Paul Price
Message:

Implementing background subtraction in the place of replacing bad pixels with the background. Bad pixels are automatically identified and set to 0 in the process, so this is effectively the same thing as before, except it subtracts the background as well. The background (from psphot) is built if it doesn't exist.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppImage/src/ppImage.h

    r20419 r20444  
    3535    bool doFringe;                      // Fringe subtraction
    3636    bool doPhotom;                      // Source identification and photometry
     37    bool doBG;                          // Background subtraction
    3738    bool doAstromChip;                  // per-chip Astrometry
    3839    bool doAstromMosaic;                // full-mosaic Astrometry
    3940    bool doStats;                       // call ppStats on the image
    40     bool replaceMasked;                 // fill in masked values with background model
    4141
    4242    // output files requested
     
    134134
    135135bool ppImageRebinChip (pmConfig *config, pmFPAview *view, ppImageOptions *options, char *outName);
    136 bool ppImageRebinReadout (pmReadout *output, pmReadout *input, pmFPAfile *outFile, ppImageOptions *options);
    137136
    138137bool ppImagePhotom (pmConfig *config, pmFPAview *view);
     
    140139bool ppImageAddstar (pmConfig *config);
    141140
    142 bool ppImageReplaceBackground (pmConfig *config, pmFPAview *view, ppImageOptions *options);
     141// Subtract background from the chip-mosaicked image
     142bool ppImageSubtractBackground(
     143    pmConfig *config,                   // Configuration
     144    const pmFPAview *view,              // View to chip of interest
     145    const ppImageOptions *options       // Processing options
     146    );
    143147
    144148bool ppImageMosaicChip (pmConfig *config, const ppImageOptions *options, const pmFPAview *view,
Note: See TracChangeset for help on using the changeset viewer.