Changeset 26743
- Timestamp:
- Jan 29, 2010, 7:12:43 PM (16 years ago)
- Location:
- branches/eam_branches/20091201/psModules/src/imcombine
- Files:
-
- 2 edited
-
pmStackReject.c (modified) (1 diff)
-
pmSubtraction.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/20091201/psModules/src/imcombine/pmStackReject.c
r26739 r26743 150 150 pmReadout *inRO = pmReadoutAlloc(NULL); // Readout with input image 151 151 inRO->image = image; 152 convRO->image = psImageAlloc(image->numCols, image->numRows, PS_TYPE_F32); 152 153 for (int i = 0; i < numRegions; i++) { 153 154 psRegion *region = subRegions->data[i]; // Region of interest -
branches/eam_branches/20091201/psModules/src/imcombine/pmSubtraction.c
r26739 r26743 1161 1161 PM_ASSERT_READOUT_NON_NULL(ro1, false); 1162 1162 PM_ASSERT_READOUT_IMAGE(ro1, false); 1163 PM_ASSERT_READOUT_IMAGE(out1, false); 1163 1164 numCols = ro1->image->numCols; 1164 1165 numRows = ro1->image->numRows; … … 1170 1171 PM_ASSERT_READOUT_NON_NULL(ro2, false); 1171 1172 PM_ASSERT_READOUT_IMAGE(ro2, false); 1173 PM_ASSERT_READOUT_IMAGE(out2, false); 1172 1174 if (numCols == 0 && numRows == 0) { 1173 1175 numCols = ro2->image->numCols;
Note:
See TracChangeset
for help on using the changeset viewer.
