Changeset 4411 for trunk/doc/pslib/psLibSDRS.tex
- Timestamp:
- Jun 28, 2005, 11:31:24 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/doc/pslib/psLibSDRS.tex (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/pslib/psLibSDRS.tex
r4410 r4411 1 %%% $Id: psLibSDRS.tex,v 1.30 3 2005-06-28 21:22:27price Exp $1 %%% $Id: psLibSDRS.tex,v 1.304 2005-06-28 21:31:24 price Exp $ 2 2 \documentclass[panstarrs,spec]{panstarrs} 3 3 … … 3151 3151 typedef struct psImage { 3152 3152 psMathType type; ///< image data type and dimension 3153 const psS32 numCols; ///< Number of columns in image 3154 const psS32 numRows; ///< Number of rows in image. 3155 const psS32 col0; ///< Column position relative to parent. 3156 const psS32 row0; ///< Row position relative to parent. 3157 3153 const int numCols; ///< Number of columns in image 3154 const int numRows; ///< Number of rows in image. 3155 const int col0; ///< Column position relative to parent. 3156 const int row0; ///< Row position relative to parent. 3158 3157 union { 3159 3158 psS8 **S8; ///< Pointers to char data … … 3203 3202 3204 3203 \begin{prototype} 3205 psImage *psImageAlloc( psS32 numCols, psS32numRows, psElemType type);3204 psImage *psImageAlloc(int numCols, int numRows, psElemType type); 3206 3205 \end{prototype} 3207 3206 Create an image of a specified \code{numCols}, \code{numRows}, and data … … 3213 3212 psImage* psImageRecycle( 3214 3213 psImage* old, ///< the psImage to recycle by resizing image buffer 3215 psS32 numCols,///< the desired number of columns in image3216 psS32 numRows,///< the desired number of rows in image3217 const psElemType type ///< the desired datatype of the image3214 int numCols, ///< the desired number of columns in image 3215 int numRows, ///< the desired number of rows in image 3216 const psElemType type ///< the desired datatype of the image 3218 3217 ); 3219 3218 \end{prototype}
Note:
See TracChangeset
for help on using the changeset viewer.
