Changeset 9857 for trunk/ppImage/src/ppImageOptions.c
- Timestamp:
- Nov 3, 2006, 4:40:46 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppImageOptions.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImageOptions.c
r9539 r9857 49 49 // Overscan defaults 50 50 options->overscan = NULL; // Overscan options 51 52 // Fringe defaults 53 options->fringeRej = NAN; 54 options->fringeIter = 0; 55 options->fringeKeep = 1.0; 51 56 52 57 // Non-linearity default options … … 163 168 options->doDark = psMetadataLookupBool(NULL, recipe, "DARK"); 164 169 options->doFlat = psMetadataLookupBool(NULL, recipe, "FLAT"); 170 options->doFringe = psMetadataLookupBool(NULL, recipe, "FRINGE"); 165 171 options->doShutter = psMetadataLookupBool(NULL, recipe, "SHUTTER"); 166 172 … … 200 206 } 201 207 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 202 213 return options; 203 214 }
Note:
See TracChangeset
for help on using the changeset viewer.
