IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 13, 2009, 5:19:15 PM (17 years ago)
Author:
eugene
Message:

adding option to measure the crosstalk (GPC1-specific for now)

File:
1 edited

Legend:

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

    r23825 r23845  
    6161    options->markValue       = 0x00;    // A safe bit for internal marking
    6262
     63    // crosstalk options
     64    options->doCrosstalkMeasure = false;   // measure crosstalk
     65    options->doCrosstalkCorrect = false;   // correct crosstalk
     66
    6367    // Non-linearity default options
    6468    options->nonLinearType   = 0;       // Type of non-linearity data (vector, string or metadata)
     
    207211    options->doMask = psMetadataLookupBool(NULL, recipe, "MASK");
    208212
     213    // Mask recipe options (note that mask bit values are set in ppImageSetMaskBits.c)
     214    options->doCrosstalkMeasure = psMetadataLookupBool(NULL, recipe, "CROSSTALK.MEASURE");
     215    options->doCrosstalkCorrect = psMetadataLookupBool(NULL, recipe, "CROSSTALK.CORRECT");
     216
    209217    options->doBias = psMetadataLookupBool(NULL, recipe, "BIAS");
    210218    options->doDark = psMetadataLookupBool(NULL, recipe, "DARK");
Note: See TracChangeset for help on using the changeset viewer.