- Timestamp:
- May 18, 2010, 5:06:01 PM (16 years ago)
- Location:
- branches/czw_branch/20100427
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
ppImage/src/ppImageOptions.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/czw_branch/20100427
- Property svn:mergeinfo changed
-
branches/czw_branch/20100427/ppImage/src/ppImageOptions.c
r26895 r28017 41 41 options->checkCTE = false; // Measure pixel-based variance 42 42 options->applyParity = false; // Apply Cell parities 43 43 options->doMaskStats = false; // Calculate mask fractions 44 44 45 // output files requested 45 46 options->BaseFITS = false; // create output image … … 108 109 // per-class normalization source 109 110 options->normClass = NULL; // per-class normalizations refer to this class 111 112 // Mask stats options 113 options->maskstat_static = 0; // static masks 114 options->maskstat_dynamic = 0; // dynamic masks 115 options->maskstat_magic = 0; // magic masks 116 options->maskstat_advisory = 0; // advisory masks 110 117 111 118 return options; … … 243 250 options->doPatternRow = psMetadataLookupBool(NULL, recipe, "PATTERN.ROW"); 244 251 options->doPatternCell = psMetadataLookupBool(NULL, recipe, "PATTERN.CELL"); 252 options->doMaskStats = psMetadataLookupBool(NULL, recipe, "MASK.STATS"); 245 253 246 254 options->doStats = false; … … 341 349 options->normClass = psMetadataLookupStr(NULL, recipe, "NORM.CLASS"); 342 350 351 options->maskstat_static = psMetadataLookupU16(NULL, recipe, "MASKSTAT.STATIC"); 352 options->maskstat_dynamic = psMetadataLookupU16(NULL, recipe, "MASKSTAT.DYNAMIC"); 353 options->maskstat_magic = psMetadataLookupU16(NULL, recipe, "MASKSTAT.MAGIC"); 354 options->maskstat_advisory = psMetadataLookupU16(NULL, recipe, "MASKSTAT.ADVISORY"); 355 356 343 357 return options; 344 358 }
Note:
See TracChangeset
for help on using the changeset viewer.
