Changeset 3977 for trunk/psLib/src/imageops/psImageStructManip.h
- Timestamp:
- May 18, 2005, 7:18:20 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/imageops/psImageStructManip.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/imageops/psImageStructManip.h
r3968 r3977 8 8 * @author Robert DeSonia, MHPCC 9 9 * 10 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $11 * @date $Date: 2005-05-19 0 2:08:21$10 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2005-05-19 05:18:20 $ 12 12 * 13 13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 45 45 ); 46 46 47 /** Create a subimage of the specified area.47 /** Makes a copy of a psImage 48 48 * 49 * Uses psLib memory allocation functions to create an image based on a larger 50 * one. 51 * 52 * @return psImage* : Pointer to psImage. 49 * @return psImage* Copy of the input psImage. This may not be equal to the 50 * output parameter 53 51 * 54 52 */ 55 psImage* psImageSubsection( 56 psImage* image, ///< Parent image. 57 const char* section ///< Subsection in the form '[x1:x2,y1:y2]' 53 psImage* psImageCopy( 54 psImage* output, ///< if not NULL, a psImage that could be recycled. 55 const psImage* input, ///< the psImage to copy 56 psElemType type ///< the desired datatype of the returned copy 58 57 ); 59 58
Note:
See TracChangeset
for help on using the changeset viewer.
