00001
00006
00007
00008 #ifndef VL_IMOP
00009 #define VL_IMOP
00010
00011 #include "generic.h"
00012
00016 #define VL_CONV_ZERO 0
00017 #define VL_CONV_CIRC 1
00018 #define VL_CONV_CONT 2
00019
00020
00021
00022 void vl_convtransp_f(vl_single *dst,
00023 vl_single const *src,
00024 vl_single const *filt,
00025 int width, int height, int filt_width,
00026 int mode) ;
00027
00028 void vl_convtransp_d(vl_double *dst,
00029 vl_double const *src,
00030 vl_double const *filt,
00031 int width, int height, int filt_width,
00032 int mode) ;
00033
00034
00035
00036
00037 void vl_imsmooth_f(vl_single *dst,
00038 vl_single *temp,
00039 vl_single const *src,
00040 int width, int height, double sigma) ;
00041
00042 void vl_imsmooth_d(vl_double *dst,
00043 vl_double *temp,
00044 vl_double const *src,
00045 int width, int height, double sigma) ;
00048
00049 #endif