00001 #ifndef __gauss_pyr_h__ 00002 #define __gauss_pyr_h__ 00003 00004 #include <stdint.h> 00005 00006 #ifdef __cplusplus 00007 extern "C" { 00008 #endif 00009 00010 int gauss_pyr_down_get_buf_size_8u_C1R(int width, int height); 00011 00012 int gauss_pyr_down_8u_C1R(const uint8_t* src, int src_stride, int src_width, 00013 int src_height, uint8_t* dest, int dst_stride, uint8_t* buf); 00014 00015 #ifdef __cplusplus 00016 } 00017 #endif 00018 00019 #endif