Changeset 20371
- Timestamp:
- Oct 24, 2008, 2:59:21 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/dvoTools/src/dvoApplyCorrReadout.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dvoTools/src/dvoApplyCorrReadout.c
r20180 r20371 47 47 // coordinates to the correction cell/pixel coords. 48 48 for (int j = 0; j < inImage->numRows; j++) { 49 int jC = (yParity < 0) ? y0 + j*yParity : y0 + j*yParity + 1;49 int jC = y0 + j*yParity; 50 50 for (int i = 0; i < inImage->numCols; i++) { 51 int iC = (xParity < 0) ? x0 + i*xParity : x0 + i*xParity + 1;51 int iC = x0 + i*xParity; 52 52 inImage->data.F32[j][i] *= corrImage->data.F32[jC][iC]; 53 53 }
Note:
See TracChangeset
for help on using the changeset viewer.
