Changeset 3977 for trunk/psLib/src/image/psImage.h
- Timestamp:
- May 18, 2005, 7:18:20 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/image/psImage.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/image/psImage.h
r3786 r3977 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1.5 1$ $Name: not supported by cvs2svn $14 * @date $Date: 2005-0 4-29 02:25:10 $13 * @version $Revision: 1.52 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-05-19 05:18:20 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 110 110 /** Create a psRegion with the specified attributes. 111 111 * 112 * Uses psLib memory allocation functions to create a psRegion the 113 * specified x0, x1, y0, and y1. 114 * 115 * @return psRegion* : Pointer to psRegion. 116 * 117 */ 118 psRegion* psRegionAlloc( 112 * @return psRegion : a cooresponding psRegion. 113 */ 114 psRegion psRegionSet( 119 115 psF32 x0, ///< the first column of the region. 120 psF32 x1, ///< the last column of the region .116 psF32 x1, ///< the last column of the region + 1. 121 117 psF32 y0, ///< the first row of the region. 122 psF32 y1 ///< the last row of the region .118 psF32 y1 ///< the last row of the region + 1. 123 119 ); 124 120 … … 128 124 * shall be of the standard IRAF form '[x0:x1,y0:y1]' 129 125 * 130 * @return psRegion *: A new psRegion struct, or NULL is not successful.131 */ 132 psRegion *psRegionFromString(126 * @return psRegion: A new psRegion struct, or NULL is not successful. 127 */ 128 psRegion psRegionFromString( 133 129 char* region ///< image rectangular region in the form '[x0:x1,y0:y1]' 134 130 ); … … 140 136 */ 141 137 char* psRegionToString( 142 psRegion *region ///< the psRegion to convert to a string138 psRegion region ///< the psRegion to convert to a string 143 139 ); 144 140 … … 153 149 psU32 numRows, ///< the desired number of rows in image 154 150 const psElemType type ///< the desired datatype of the image 155 );156 157 /** Makes a copy of a psImage158 *159 * @return psImage* Copy of the input psImage. This may not be equal to the160 * output parameter161 *162 */163 psImage* psImageCopy(164 psImage* output, ///< if not NULL, a psImage that could be recycled.165 const psImage* input, ///< the psImage to copy166 psElemType type ///< the desired datatype of the returned copy167 151 ); 168 152
Note:
See TracChangeset
for help on using the changeset viewer.
