- Timestamp:
- Jun 19, 2012, 5:24:19 PM (14 years ago)
- Location:
- branches/meh_branches/ppstack_test
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
ppImage/src (modified) (1 prop)
-
ppImage/src/ppImageOptions.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/meh_branches/ppstack_test
- Property svn:mergeinfo changed
-
branches/meh_branches/ppstack_test/ppImage/src
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-20120405/ppImage/src (added) merged: 33949
- Property svn:mergeinfo changed
-
branches/meh_branches/ppstack_test/ppImage/src/ppImageOptions.c
r33415 r34041 41 41 options->doStats = false; // Measure and save image statistics 42 42 options->checkCTE = false; // Measure pixel-based variance 43 options->checkNoise = false; // Measure cell-level variances. 43 44 options->applyParity = false; // Apply Cell parities 44 45 options->doMaskStats = false; // Calculate mask fractions 45 46 options->addNoise = false; //Degrade an MD image to a 3pi image 46 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? 47 50 // output files requested 48 51 options->BaseFITS = false; // create output image … … 319 322 320 323 options->checkCTE = psMetadataLookupBool(NULL, recipe, "CHECK.CTE"); 324 options->checkNoise = psMetadataLookupBool(NULL, recipe, "CHECK.NOISE"); 321 325 322 326 /* doMaskBuild : there are some cases where we require a mask, so we force doMaskBuild to be set even if the user specified 'FALSE' … … 360 364 options->fringeKeep = psMetadataLookupF32(NULL, recipe, "FRINGE.KEEP"); 361 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 362 374 // Pattern correction 363 375 if (psMetadataLookup(format, "PATTERN.ROW.ORDER")) { … … 416 428 options->patternContinuityEdgeWidth = psMetadataLookupS32(NULL, recipe, "PATTERN.CONTINUITY.WIDTH"); 417 429 } 418 430 419 431 420 432 // Remnance options
Note:
See TracChangeset
for help on using the changeset viewer.
