00001
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef VL_IMOP
00014 #define VL_IMOP
00015
00016 #include "generic.h"
00017
00021 #define VL_CONV_ZERO 0
00022 #define VL_CONV_CIRC 1
00023 #define VL_CONV_CONT 2
00024
00025
00029 VL_EXPORT
00030 void vl_convtransp_f(float *dst,
00031 float const *src,
00032 float const *filt,
00033 int width, int height, int filt_width,
00034 int mode) ;
00035
00036 VL_EXPORT
00037 void vl_convtransp_d(double *dst,
00038 double const *src,
00039 double const *filt,
00040 int width, int height, int filt_width,
00041 int mode) ;
00042
00043
00044
00048 VL_EXPORT
00049 void vl_imsmooth_f(float *dst,
00050 float *temp,
00051 float const *src,
00052 int width, int height, double sigma) ;
00053
00054 VL_EXPORT
00055 void vl_imsmooth_d(double *dst,
00056 double *temp,
00057 double const *src,
00058 int width, int height, double sigma) ;
00061
00062 #endif