| |
| |
| |
| |
|
|
| |
| |
| |
| |
| |
| |
|
|
| #ifndef VL_IMOPV_H |
| #define VL_IMPOV_H |
|
|
| #include "generic.h" |
|
|
| |
| |
| #define VL_PAD_BY_ZERO (0x0 << 0) |
| #define VL_PAD_BY_CONTINUITY (0x1 << 0) |
| #define VL_PAD_MASK (0x3) |
| #define VL_TRANSPOSE (0x1 << 2) |
| |
|
|
| |
| |
| VL_EXPORT |
| void vl_imconvcol_vf (float* dst, int dst_stride, |
| float const* src, |
| int src_width, int src_height, int src_stride, |
| float const* filt, int filt_begin, int filt_end, |
| int step, unsigned int flags) ; |
|
|
| VL_EXPORT |
| void vl_imconvcol_vd (double* dst, int dst_stride, |
| double const* src, |
| int src_width, int src_height, int src_stride, |
| double const* filt, int filt_begin, int filt_end, |
| int step, unsigned int flags) ; |
|
|
| VL_EXPORT |
| void vl_imconvcoltri_vf (float* dst, int dst_stride, |
| float const* src, |
| int src_width, int src_height, int src_stride, |
| int filt_size, |
| int step, unsigned int flags) ; |
|
|
| VL_EXPORT |
| void vl_imconvcoltri_vd (double* dst, int dst_stride, |
| double const* src, |
| int src_width, int src_height, int src_stride, |
| int filt_size, |
| int step, unsigned int flags) ; |
| |
|
|
| |
| #endif |
|
|