IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 19, 2007, 4:49:08 PM (19 years ago)
Author:
Paul Price
Message:

Adding chip and mask output for chip-mosaicked files. Was going to make this the default output, but we only have to have it selected in the recipe. Reduced the name of the filerule down, so that it's not excessively long (e.g., PPIMAGE.OUTPUT.CHIP.MASK --> PPIMAGE.CHIP.MASK).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppImage/src/ppImageOptions.c

    r13761 r13901  
    2828    options->badMask    = 0x00;         // Bad pixels
    2929    options->flatMask   = 0x00;         // Bad flat pixels
     30    options->blankMask  = 0x00;         // Blank (no data, cell gap) pixels
    3031
    3132    options->doNonLin   = false;        // Non-linearity correction
     
    147148
    148149        // What method do we use to measure the overscan statistics?
    149         // XXX allow user to specify psStats types by name
     150        // XXX allow user to specify psStats types by name
    150151        psStats *overscanStats = NULL;  // Statistics for overscan
    151152        psString stat = psMetadataLookupStr(NULL, recipe, "OVERSCAN.STAT");
     
    175176    options->badMask = pmConfigMask("BAD", config);
    176177    options->flatMask = pmConfigMask("FLAT", config);
    177 
     178    options->blankMask = pmConfigMask("BLANK", config);
    178179
    179180    options->doBias = psMetadataLookupBool(NULL, recipe, "BIAS");
Note: See TracChangeset for help on using the changeset viewer.