- Timestamp:
- Oct 22, 2013, 6:27:11 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20130904/psLib/src/imageops/psImageConvolve.h
r35767 r36228 26 26 #define PS_TYPE_KERNEL_NAME "psF32" ///< the data type for kernel as a string */ 27 27 28 /// a structure to contain data related to image smoothing with a 1D gauss kernel28 /// a structure to contain data related to image smoothing with a pre-cached 1D gauss kernel 29 29 typedef struct { 30 30 int Nx; … … 34 34 psF32 *resultY; 35 35 psVector *kernel; 36 } psImageSmooth _PreAlloc_Data;36 } psImageSmoothCacheData; 37 37 38 38 /// A convolution kernel … … 306 306 ); 307 307 308 psImageSmooth _PreAlloc_Data *psImageSmooth_PreAlloc_DataAlloc (psImage *image, double sigma, double Nsigma);309 bool psImageSmooth _PreAlloc_F32(psImage *image, psImageSmooth_PreAlloc_Data *smdata);308 psImageSmoothCacheData *psImageSmoothCacheAlloc (psImage *image, double sigma, double Nsigma); 309 bool psImageSmoothCache_F32(psImage *image, psImageSmoothCacheData *smdata); 310 310 311 311 /// Control threading for image convolution functions
Note:
See TracChangeset
for help on using the changeset viewer.
