Changeset 33848 for trunk/ppImage/src/ppImageOptions.c
- Timestamp:
- May 3, 2012, 5:51:09 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppImageOptions.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImageOptions.c
r33590 r33848 45 45 options->doMaskStats = false; // Calculate mask fractions 46 46 options->addNoise = false; //Degrade an MD image to a 3pi image 47 47 options->hasVideo = false; // Determine if this OTA has a video cell 48 options->useVideoDark = false; // Use video dark if we can? 49 options->useVideoMask = false; // Use video mask if we can? 48 50 // output files requested 49 51 options->BaseFITS = false; // create output image … … 362 364 options->fringeKeep = psMetadataLookupF32(NULL, recipe, "FRINGE.KEEP"); 363 365 366 // Video cell options 367 if (psMetadataLookup(recipe, "USE.VIDEO.DARK")) { 368 options->useVideoDark = psMetadataLookupBool(NULL,recipe,"USE.VIDEO.DARK"); 369 } 370 if (psMetadataLookup(recipe, "USE.VIDEO.MASK")) { 371 options->useVideoMask = psMetadataLookupBool(NULL,recipe,"USE.VIDEO.MASK"); 372 } 373 364 374 // Pattern correction 365 375 if (psMetadataLookup(format, "PATTERN.ROW.ORDER")) { … … 418 428 options->patternContinuityEdgeWidth = psMetadataLookupS32(NULL, recipe, "PATTERN.CONTINUITY.WIDTH"); 419 429 } 420 430 421 431 422 432 // Remnance options
Note:
See TracChangeset
for help on using the changeset viewer.
