- Timestamp:
- Mar 30, 2012, 2:49:37 PM (14 years ago)
- Location:
- branches/eam_branches/ipp-20111122/ppImage/src
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
ppImageOptions.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20111122/ppImage/src
- Property svn:mergeinfo changed
/trunk/ppImage/src merged: 33030,33243,33590
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20111122/ppImage/src/ppImageOptions.c
r31066 r33638 34 34 options->doPatternRow = false; // Row pattern correction 35 35 options->doPatternCell = false; // Cell pattern correction 36 options->doPatternContinuity = false; // Cell continuity correction 36 37 options->doFringe = false; // Fringe subtraction 37 38 options->doPhotom = false; // Source identification and photometry … … 40 41 options->doStats = false; // Measure and save image statistics 41 42 options->checkCTE = false; // Measure pixel-based variance 43 options->checkNoise = false; // Measure cell-level variances. 42 44 options->applyParity = false; // Apply Cell parities 43 45 options->doMaskStats = false; // Calculate mask fractions … … 253 255 options->doPatternRow = psMetadataLookupBool(NULL, recipe, "PATTERN.ROW"); 254 256 options->doPatternCell = psMetadataLookupBool(NULL, recipe, "PATTERN.CELL"); 257 options->doPatternContinuity = psMetadataLookupBool(NULL, recipe, "PATTERN.CONTINUITY"); 255 258 256 259 options->doMaskStats = psMetadataLookupBool(NULL, recipe, "MASK.STATS"); … … 317 320 318 321 options->checkCTE = psMetadataLookupBool(NULL, recipe, "CHECK.CTE"); 322 options->checkNoise = psMetadataLookupBool(NULL, recipe, "CHECK.NOISE"); 319 323 320 324 /* doMaskBuild : there are some cases where we require a mask, so we force doMaskBuild to be set even if the user specified 'FALSE' … … 408 412 } 409 413 414 if (psMetadataLookup(format, "PATTERN.CONTINUITY.WIDTH")) { 415 options->patternContinuityEdgeWidth = psMetadataLookupS32(NULL, format, "PATTERN.CONTINUITY.WIDTH"); 416 } 417 else { 418 options->patternContinuityEdgeWidth = psMetadataLookupS32(NULL, recipe, "PATTERN.CONTINUITY.WIDTH"); 419 } 420 410 421 411 422 // Remnance options
Note:
See TracChangeset
for help on using the changeset viewer.
