Changeset 1406 for trunk/psLib/src/image
- Timestamp:
- Aug 6, 2004, 12:34:06 PM (22 years ago)
- Location:
- trunk/psLib/src/image
- Files:
-
- 6 edited
-
psImage.c (modified) (1 diff)
-
psImage.h (modified) (1 diff)
-
psImageExtraction.c (modified) (5 diffs)
-
psImageIO.c (modified) (1 diff)
-
psImageManip.c (modified) (1 diff)
-
psImageStats.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/image/psImage.c
r1385 r1406 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1.3 6$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-08-0 4 23:37:39$11 * @version $Revision: 1.37 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-08-06 22:34:05 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/image/psImage.h
r1385 r1406 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1.2 6$ $Name: not supported by cvs2svn $14 * @date $Date: 2004-08-0 4 23:37:39$13 * @version $Revision: 1.27 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2004-08-06 22:34:05 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/image/psImageExtraction.c
r1404 r1406 9 9 * @author Robert DeSonia, MHPCC 10 10 * 11 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-08-06 2 1:50:13$11 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-08-06 22:34:05 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 334 334 if ( delta < 0 ) { 335 335 outData += numCols - 1; 336 if (outPosition != NULL) { 337 outPosition += numCols - 1; 338 } 336 339 } 337 340 … … 362 365 *outData = statVal; \ 363 366 if (outPosition != NULL) { \ 364 *(outPosition++) = col+c; \ 367 *outPosition = col+c; \ 368 outPosition += delta; \ 365 369 } \ 366 370 outData += delta; \ … … 416 420 if ( delta < 0 ) { 417 421 outData += numRows - 1; 422 if (outPosition != NULL) { 423 outPosition += numRows - 1; 424 } 418 425 } 419 426 … … 428 435 *outData = statVal; 429 436 if (outPosition != NULL) { 430 *(outPosition++) = row+r; 437 *outPosition = row+r; 438 outPosition += delta; 439 \ 431 440 } 432 441 outData += delta; -
trunk/psLib/src/image/psImageIO.c
r1385 r1406 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $10 * @date $Date: 2004-08-0 4 23:37:39$9 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2004-08-06 22:34:05 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/image/psImageManip.c
r1385 r1406 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-08-0 4 23:37:39$12 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-08-06 22:34:05 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/image/psImageStats.c
r1393 r1406 9 9 * @author George Gusciora, MHPCC 10 10 * 11 * @version $Revision: 1.2 8$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-08-0 5 19:38:52$11 * @version $Revision: 1.29 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-08-06 22:34:05 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii
Note:
See TracChangeset
for help on using the changeset viewer.
