Changeset 1263 for trunk/psLib/src/image/psImage.h
- Timestamp:
- Jul 22, 2004, 10:42:22 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/image/psImage.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/image/psImage.h
r1261 r1263 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1.2 4$ $Name: not supported by cvs2svn $14 * @date $Date: 2004-07-22 20: 09:04$13 * @version $Revision: 1.25 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2004-07-22 20:42:22 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 98 98 ); 99 99 100 /** Create a subimage of the specified area.101 *102 * Uses psLib memory allocation functions to create an image based on a larger103 * one.104 *105 * @return psImage*: Pointer to psImage.106 *107 */108 psImage *psImageSubset(109 psImage *out, ///< Subimage to return, or NULL.110 psImage *image, ///< Parent image.111 unsigned int numCols, ///< Subimage width (<= image.nCols - col0).112 unsigned int numRows, ///< Subimage height (<= image.nRows - row0).113 unsigned int col0, ///< Subimage col-offset (0 <= col0 < nCol).114 unsigned int row0 ///< Subimage row-offset (0 <= row0 < nCol).115 );116 100 117 101 /** Frees all children of a psImage. … … 123 107 psImage* image 124 108 /**< psImage in which all children shall be deallocated */ 125 );126 127 /** Makes a copy of a psImage128 *129 * @return psImage* Copy of the input psImage. This may not be equal to the130 * output parameter131 *132 */133 psImage *psImageCopy(134 psImage* restrict output,135 /**< if not NULL, a psImage that could be recycled. If it can not be used,136 * it will be freed via psImageFree137 */138 const psImage *input,139 /**< the psImage to copy */140 psElemType type141 /**< the desired datatype of the returned copy */142 109 ); 143 110
Note:
See TracChangeset
for help on using the changeset viewer.
