Changeset 16680 for trunk/psModules/src/camera/pmReadoutStack.c
- Timestamp:
- Feb 26, 2008, 4:24:39 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/camera/pmReadoutStack.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmReadoutStack.c
r16600 r16680 25 25 if (!readout->image) { 26 26 readout->image = psImageAlloc(numCols, numRows, PS_TYPE_F32); 27 psImageInit(readout->image, NAN); 27 28 } 28 29 if (readout->image->numCols < numCols || readout->image->numRows < numRows) { … … 38 39 if (!readout->mask) { 39 40 readout->mask = psImageAlloc(numCols, numRows, PS_TYPE_MASK); 41 psImageInit(readout->mask, blank); 40 42 } 41 43 if (readout->mask->numCols < numCols || readout->mask->numRows < numRows) { … … 51 53 if (!readout->weight) { 52 54 readout->weight = psImageAlloc(numCols, numRows, PS_TYPE_F32); 55 psImageInit(readout->weight, NAN); 53 56 } 54 57 if (readout->weight->numCols < numCols || readout->weight->numRows < numRows) {
Note:
See TracChangeset
for help on using the changeset viewer.
