Changeset 1292 for trunk/psLib/src/image/psImageExtraction.h
- Timestamp:
- Jul 23, 2004, 4:00:21 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
r1267 r1292 9 9 * @author Robert DeSonia, MHPCC 10 10 * 11 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-07-2 2 20:48:44$11 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-07-24 02:00:21 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 19 19 20 20 #include "psImage.h" 21 #include "psVector.h" 22 #include "psStats.h" 23 24 /// @addtogroup Image 25 /// @{ 26 27 typedef enum { 28 PS_CUT_X_POS, 29 PS_CUT_X_NEG, 30 PS_CUT_Y_POS, 31 PS_CUT_Y_NEG, 32 } psImageCutDirection; 21 33 22 34 /** Create a subimage of the specified area. … … 54 66 ); 55 67 68 psVector* psImageSlice( 69 psVector* out, 70 const psImage* input, 71 const psImage* restrict mask, 72 unsigned int maskVal, 73 unsigned int col, 74 unsigned int row, 75 unsigned int numCols, 76 unsigned int numRows, 77 psImageCutDirection direction, 78 const psStats* stats 79 ); 80 81 psVector* psImageCut( 82 psVector* out, 83 const psImage* input, 84 const psImage* restrict mask, 85 unsigned int maskVal, 86 float startCol, 87 float startRow, 88 float endCol, 89 float endRow, 90 float width, 91 const psStats* stats 92 ); 93 94 psVector* psImageRadialCut( 95 psVector* out, 96 const psImage* input, 97 const psImage* restrict mask, 98 unsigned int maskVal, 99 float centerCol, 100 float centerRow, 101 const psVector* radii, 102 const psStats* stats 103 ); 104 105 /// @} 56 106 57 107 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
