Changeset 29216
- Timestamp:
- Sep 23, 2010, 7:04:57 AM (16 years ago)
- Location:
- branches/eam_branches/ipp-20100823/ppSub/src
- Files:
-
- 2 edited
-
ppSubConvolve.c (modified) (1 diff)
-
ppSubSetMasks.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20100823/ppSub/src/ppSubConvolve.c
r28567 r29216 241 241 psThreadPoolInit(threads); 242 242 } 243 244 // Mask the NAN values (USE BLANK instead of SAT?) 245 if (!pmReadoutMaskInvalid(input, maskVal, maskBad)) { 246 psError(PPSUB_ERR_DATA, false, "Unable to mask non-finite pixels in input."); 247 return false; 248 } 249 if (!pmReadoutMaskInvalid(ref, maskVal, maskBad)) { 250 psError(PPSUB_ERR_DATA, false, "Unable to mask non-finite pixels in reference."); 251 return false; 252 } 253 243 254 if (!pmSubtractionMatchPrecalc(inConv, refConv, input, ref, inRO->analysis, 244 255 stride, kernelErr, covarFrac, maskVal, maskBad, maskPoor, -
branches/eam_branches/ipp-20100823/ppSub/src/ppSubSetMasks.c
r26982 r29216 77 77 } 78 78 79 // Mask the NAN values 80 if (!pmReadoutMask Nonfinite(inRO, satValue)) {79 // Mask the NAN values (USE BLANK instead of SAT?) 80 if (!pmReadoutMaskInvalid(inRO, maskValue, satValue)) { 81 81 psError(PPSUB_ERR_DATA, false, "Unable to mask non-finite pixels in input."); 82 82 return false; 83 83 } 84 if (!pmReadoutMask Nonfinite(refRO, satValue)) {84 if (!pmReadoutMaskInvalid(refRO, maskValue, satValue)) { 85 85 psError(PPSUB_ERR_DATA, false, "Unable to mask non-finite pixels in reference."); 86 86 return false; 87 87 } 88 89 88 90 89 #if 0
Note:
See TracChangeset
for help on using the changeset viewer.
