Changeset 1359 for trunk/psLib/src/image/psImageExtraction.h
- Timestamp:
- Jul 30, 2004, 4:27:43 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/image/psImageExtraction.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/image/psImageExtraction.h
r1292 r1359 1 1 /** @file psImageManip.h 2 *3 * @brief Contains basic image extraction operations, as specified in the4 * PSLIB SDRS sections "Image Pixel Extractions" and "Image Structure5 * Manipulation".6 *7 * @ingroup Image8 *9 * @author Robert DeSonia, MHPCC10 *11 * @version $Revision: 1.2$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-07-24 02:00:21$13 *14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii15 */2 * 3 * @brief Contains basic image extraction operations, as specified in the 4 * PSLIB SDRS sections "Image Pixel Extractions" and "Image Structure 5 * Manipulation". 6 * 7 * @ingroup Image 8 * 9 * @author Robert DeSonia, MHPCC 10 * 11 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-07-31 02:27:43 $ 13 * 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 15 */ 16 16 17 17 #ifndef PSIMAGEEXTRACTION_H … … 41 41 */ 42 42 psImage *psImageSubset( 43 psImage *out, ///< Subimage to return, or NULL.44 psImage *image, ///< Parent image.45 unsigned int numCols, ///< Subimage width (<= image.nCols - col0).46 unsigned int numRows, ///< Subimage height (<= image.nRows - row0).47 unsigned int col0, ///< Subimage col-offset (0 <= col0 < nCol).43 psImage *out, ///< Subimage to return, or NULL. 44 psImage *image, ///< Parent image. 45 unsigned int numCols, ///< Subimage width (<= image.nCols - col0). 46 unsigned int numRows, ///< Subimage height (<= image.nRows - row0). 47 unsigned int col0, ///< Subimage col-offset (0 <= col0 < nCol). 48 48 unsigned int row0 ///< Subimage row-offset (0 <= row0 < nCol). 49 49 ); … … 68 68 psVector* psImageSlice( 69 69 psVector* out, 70 const psImage* input,70 const psImage* restrict input, 71 71 const psImage* restrict mask, 72 72 unsigned int maskVal,
Note:
See TracChangeset
for help on using the changeset viewer.
