IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 3, 2006, 4:40:46 PM (20 years ago)
Author:
Paul Price
Message:

Adding fringe processing.

File:
1 edited

Legend:

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

    r9539 r9857  
    4949    // Overscan defaults
    5050    options->overscan      = NULL;      // Overscan options
     51
     52    // Fringe defaults
     53    options->fringeRej = NAN;
     54    options->fringeIter = 0;
     55    options->fringeKeep = 1.0;
    5156
    5257    // Non-linearity default options
     
    163168    options->doDark = psMetadataLookupBool(NULL, recipe, "DARK");
    164169    options->doFlat = psMetadataLookupBool(NULL, recipe, "FLAT");
     170    options->doFringe = psMetadataLookupBool(NULL, recipe, "FRINGE");
    165171    options->doShutter = psMetadataLookupBool(NULL, recipe, "SHUTTER");
    166172
     
    200206    }
    201207
     208    // Fringe options
     209    options->fringeRej = psMetadataLookupF32(NULL, recipe, "FRINGE.REJ");
     210    options->fringeIter = psMetadataLookupS32(NULL, recipe, "FRINGE.ITER");
     211    options->fringeKeep = psMetadataLookupF32(NULL, recipe, "FRINGE.KEEP");
     212
    202213    return options;
    203214}
Note: See TracChangeset for help on using the changeset viewer.