Changeset 12647
- Timestamp:
- Mar 28, 2007, 12:48:57 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/detrend/pmBias.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/detrend/pmBias.c
r11687 r12647 79 79 80 80 if ((inImage->numCols + x0in - x0sub) > subImage->numCols) { 81 psError(PS_ERR_UNKNOWN, true, "Image does not have enough columns for subtraction.\n"); 81 psError(PS_ERR_UNKNOWN, true, "Image does not have enough columns for subtraction (%d vs %d).\n", 82 inImage->numCols + x0in - x0sub, subImage->numCols); 82 83 return false; 83 84 } 84 85 if ((inImage->numRows + y0in - y0sub) > subImage->numRows) { 85 psError(PS_ERR_UNKNOWN, true, "Image does not have enough rows for subtraction.\n"); 86 psError(PS_ERR_UNKNOWN, true, "Image does not have enough rows for subtraction (%d vs %d).\n", 87 inImage->numRows + y0in - y0sub, subImage->numRows); 86 88 return false; 87 89 }
Note:
See TracChangeset
for help on using the changeset viewer.
