Changeset 2204 for trunk/psLib/src/image/psImageExtraction.h
- Timestamp:
- Oct 26, 2004, 2:57:34 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/image/psImageExtraction.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/image/psImageExtraction.h
r2088 r2204 10 10 * @author Robert DeSonia, MHPCC 11 11 * 12 * @version $Revision: 1.1 8$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-10- 13 22:05:03$12 * @version $Revision: 1.19 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-10-27 00:57:31 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 54 54 psImage* psImageSubset( 55 55 psImage* image, ///< Parent image. 56 intcol0, ///< starting column of subimage57 introw0, ///< starting row of subimage58 intcol1, ///< exclusive end column of subimage.59 introw1 ///< exclusive end row of subimage56 psS32 col0, ///< starting column of subimage 57 psS32 row0, ///< starting row of subimage 58 psS32 col1, ///< exclusive end column of subimage. 59 psS32 row1 ///< exclusive end row of subimage 60 60 ); 61 61 … … 93 93 psImage* psImageTrim( 94 94 psImage* image, ///< image to trim 95 intcol0, ///< column of trim region's left boundary96 introw0, ///< row of trim region's lower boundary97 intcol1, ///< column of trim region's right boundary98 introw1 ///< row of trim region's upper boundary95 psS32 col0, ///< column of trim region's left boundary 96 psS32 row0, ///< row of trim region's lower boundary 97 psS32 col1, ///< column of trim region's right boundary 98 psS32 row1 ///< row of trim region's upper boundary 99 99 ); 100 100 … … 130 130 const psImage* restrict input, ///< the input image in which to perform the slice 131 131 const psImage* restrict mask, ///< the mask for the input image. 132 unsigned intmaskVal, ///< the mask value to apply to the mask133 intcol0, ///< the leftmost column of the slice region134 introw0, ///< the bottommost row of the slice region135 intcol1, ///< exclusive end column of the slice region136 introw1, ///< exclusive end row of the slice region132 psU32 maskVal, ///< the mask value to apply to the mask 133 psS32 col0, ///< the leftmost column of the slice region 134 psS32 row0, ///< the bottommost row of the slice region 135 psS32 col1, ///< exclusive end column of the slice region 136 psS32 row1, ///< exclusive end row of the slice region 137 137 psImageCutDirection direction, ///< the slice dimension and direction 138 138 const psStats* stats ///< the statistic to perform in slice operation … … 161 161 const psImage* input, ///< the input image in which to perform the cut 162 162 const psImage* restrict mask, ///< the mask for the input image. 163 unsigned intmaskVal, ///< the mask value to apply to the mask163 psU32 maskVal, ///< the mask value to apply to the mask 164 164 float startCol, ///< the column of the start of the cut line 165 165 float startRow, ///< the row of the start of the cut line 166 166 float endCol, ///< the column of the end of the cut line 167 167 float endRow, ///< the row of the end of the cut line 168 unsigned intnSamples, ///< the number of samples along the cut168 psU32 nSamples, ///< the number of samples along the cut 169 169 psImageInterpolateMode mode ///< the interpolation method to use 170 170 ); … … 187 187 const psImage* input, ///< the input image in which to perform the cut 188 188 const psImage* restrict mask, ///< the mask for the input image. 189 unsigned intmaskVal, ///< the mask value to apply to the mask189 psU32 maskVal, ///< the mask value to apply to the mask 190 190 float centerCol, ///< the column of the center of the cut circle 191 191 float centerRow, ///< the row of the center of the cut circle
Note:
See TracChangeset
for help on using the changeset viewer.
