Changeset 1606 for trunk/psLib/src/image/psImageExtraction.h
- Timestamp:
- Aug 23, 2004, 12:36:04 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/image/psImageExtraction.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/image/psImageExtraction.h
r1441 r1606 10 10 * @author Robert DeSonia, MHPCC 11 11 * 12 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-08- 09 23:40:55$12 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-08-23 22:36:03 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 44 44 */ 45 45 psImage* psImageSubset( 46 psImage* out, ///< image to recycle, or NULL.47 46 psImage* image, ///< Parent image. 48 47 unsigned int numCols, ///< Subimage width (<= image.nCols - col0). … … 50 49 unsigned int col0, ///< Subimage col-offset (0 <= col0 < nCol). 51 50 unsigned int row0 ///< Subimage row-offset (0 <= row0 < nCol). 51 ); 52 53 /** Create a subimage of the specified area. 54 * 55 * Uses psLib memory allocation functions to create an image based on a larger 56 * one. 57 * 58 * @return psImage* : Pointer to psImage. 59 * 60 */ 61 psImage* psImageSubsection( 62 psImage* image, ///< Parent image. 63 const char* section ///< Subsection in the form '[x1:x2,y1:y2]' 52 64 ); 53 65
Note:
See TracChangeset
for help on using the changeset viewer.
