Changeset 2204 for trunk/psLib/src/imageops/psImageConvolve.h
- Timestamp:
- Oct 26, 2004, 2:57:34 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/imageops/psImageConvolve.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/imageops/psImageConvolve.h
r1863 r2204 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $10 * @date $Date: 2004- 09-23 18:30:57$9 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2004-10-27 00:57:31 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 15 15 #ifndef PS_IMAGE_CONVOLVE_H 16 16 #define PS_IMAGE_CONVOLVE_H 17 18 #include<stdbool.h>19 17 20 18 #include "psImage.h" … … 32 30 { 33 31 psImage* image; ///< Kernel data, in the form of an image 34 intxMin; ///< Most negative x index35 intyMin; ///< Most negative y index36 intxMax; ///< Most positive x index37 intyMax; ///< Most positive y index32 psS32 xMin; ///< Most negative x index 33 psS32 yMin; ///< Most negative y index 34 psS32 xMax; ///< Most positive x index 35 psS32 yMax; ///< Most positive y index 38 36 psKernelType** kernel; ///< Pointer to the kernel data 39 37 psKernelType** p_kernelRows; ///< Pointer to the rows of the kernel data; not intended for user use. … … 68 66 */ 69 67 psKernel* psKernelAlloc( 70 intxMin, ///< Most negative x index71 intxMax, ///< Most positive x index72 intyMin, ///< Most negative y index73 intyMax ///< Most positive y index68 psS32 xMin, ///< Most negative x index 69 psS32 xMax, ///< Most positive x index 70 psS32 yMin, ///< Most negative y index 71 psS32 yMax ///< Most positive y index 74 72 ); 75 73 … … 94 92 const psVector* xShifts, ///< list of x-axis shifts 95 93 const psVector* yShifts, ///< list of y-axis shifts 96 bool relative94 psBool relative 97 95 ); 98 96 … … 118 116 const psImage* in, ///< the psImage to convolve 119 117 const psKernel* kernel, ///< kernel to colvolve with 120 bool direct ///< specifies method, true=direct convolution, false=fourier118 psBool direct ///< specifies method, true=direct convolution, false=fourier 121 119 ); 122 120
Note:
See TracChangeset
for help on using the changeset viewer.
