Changeset 24791
- Timestamp:
- Jul 14, 2009, 6:35:52 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/imcombine/pmReadoutCombine.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/imcombine/pmReadoutCombine.c
r23989 r24791 173 173 for (int i = 0; i < inputs->n; i++) { 174 174 pmReadout *readout = inputs->data[i]; // Readout of interest 175 psAssert(readout, "readout was not defined"); 176 if (!readout->process) continue; 175 177 if (!readout->image) { 176 178 psError(PS_ERR_UNEXPECTED_NULL, true, "Image data is missing for image %d.\n", i); … … 271 273 for (int r = 0; r < inputs->n; r++) { 272 274 pmReadout *readout = inputs->data[r]; // Input readout 275 if (!readout->process) continue; 273 276 psTrace("psModules.imcombine", 3, "Iterating input %d: %d --> %d, %d --> %d\n", r, 274 277 minInputCols - readout->col0, maxInputCols - readout->col0, … … 308 311 for (int r = 0; r < inputs->n; r++) { 309 312 pmReadout *readout = inputs->data[r]; // Input readout 313 if (!readout->process) { 314 maskData[r] = 1; 315 continue; 316 } 310 317 int yIn = i - readout->row0; // y position on input readout 311 318 int xIn = j - readout->col0; // x position on input readout
Note:
See TracChangeset
for help on using the changeset viewer.
