Changeset 16607 for trunk/psModules/src/imcombine/pmStack.c
- Timestamp:
- Feb 22, 2008, 9:50:56 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/imcombine/pmStack.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/imcombine/pmStack.c
r16604 r16607 8 8 * @author GLG, MHPCC 9 9 * 10 * @version $Revision: 1.19 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2008-02-22 19:50:56 $ 10 12 * Copyright 2004-2007 Institute for Astronomy, University of Hawaii 11 13 * … … 510 512 for (int j = 0; j < pixels->n; j++) { 511 513 int x = pixels->data[j].x, y = pixels->data[j].y; // Coordinates of interest 514 if (x < 0 || x >= numCols || y < 0 || y >= numRows) { 515 psWarning("Bad pixel coordinate: %d,%d --- ignored.", x, y); 516 continue; 517 } 512 518 psArray *columns = map->data[y]; // The columns for that row 513 519 psVector *images = columns->data[x]; // The images for that column
Note:
See TracChangeset
for help on using the changeset viewer.
