Changeset 32725 for trunk/psLib/src/imageops/psImageConvolve.h
- Timestamp:
- Nov 20, 2011, 3:55:38 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/imageops/psImageConvolve.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/imageops/psImageConvolve.h
r30595 r32725 25 25 #define PS_TYPE_KERNEL_DATA F32 ///< the data member to use for kernel image */ 26 26 #define PS_TYPE_KERNEL_NAME "psF32" ///< the data type for kernel as a string */ 27 28 /// a structure to contain data related to image smoothing with a 1D gauss kernel 29 typedef struct { 30 int Nx; 31 int Ny; 32 int Nrange; 33 psF32 *resultX; 34 psF32 *resultY; 35 psVector *kernel; 36 } psImageSmooth_PreAlloc_Data; 27 37 28 38 /// A convolution kernel … … 277 287 ); 278 288 289 psImageSmooth_PreAlloc_Data *psImageSmooth_PreAlloc_DataAlloc (psImage *image, double sigma, double Nsigma); 290 bool psImageSmooth_PreAlloc_F32(psImage *image, psImageSmooth_PreAlloc_Data *smdata); 291 279 292 /// Control threading for image convolution functions 280 293 ///
Note:
See TracChangeset
for help on using the changeset viewer.
