- Timestamp:
- Apr 18, 2006, 8:31:55 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/rel10_ifa/psModules/src/detrend/pmMaskBadPixels.c
r6554 r6899 24 24 * @author Ross Harman, MHPCC 25 25 * 26 * @version $Revision: 1.3.12. 2$ $Name: not supported by cvs2svn $27 * @date $Date: 2006-0 3-09 03:10:27$26 * @version $Revision: 1.3.12.3 $ $Name: not supported by cvs2svn $ 27 * @date $Date: 2006-04-19 06:31:55 $ 28 28 * 29 29 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 148 148 /* Pixels which satisfy growVal and within the grow radius shall be masked */ \ 149 149 if(mask->data.PS_TYPE_MASK_DATA[j][i] & growVal) { \ 150 rowMin = MAX(j-grow, 0); \151 rowMax = MIN(j+grow+1, inImage->numRows); \152 colMin = MAX(i-grow, 0); \153 colMax = MIN(i+grow+1, inImage->numCols); \150 rowMin = PS_MAX(j-grow, 0); \ 151 rowMax = PS_MIN(j+grow+1, inImage->numRows); \ 152 colMin = PS_MAX(i-grow, 0); \ 153 colMax = PS_MIN(i+grow+1, inImage->numCols); \ 154 154 for(jj=rowMin; jj<rowMax; jj++) { \ 155 155 for(ii=colMin; ii<colMax; ii++) { \
Note:
See TracChangeset
for help on using the changeset viewer.
