00001 /** @file psVectorSmooth.h 00002 * 00003 * smooth the input vector 00004 * 00005 */ 00006 00007 #ifndef PS_VECTOR_SMOOTH_H 00008 #define PS_VECTOR_SMOOTH_H 00009 00010 // Smooth a vector with a Gaussian 00011 psVector *psVectorSmooth(psVector *output, // Output vector, or NULL 00012 const psVector *input, // Input vector (F32 or F64 only) 00013 double sigma, // Gausian width (standard deviations) 00014 double Nsigma // Number of standard deviations for Gaussian to extend (either side) 00015 ); 00016 00017 #endif
1.4.4