- Timestamp:
- Mar 5, 2012, 5:19:48 PM (14 years ago)
- Location:
- branches/meh_branches/ppstack_test
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
psLib/src/imageops/psImageConvolve.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/meh_branches/ppstack_test
- Property svn:mergeinfo changed
-
branches/meh_branches/ppstack_test/psLib/src/imageops/psImageConvolve.h
r30595 r33415 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.
