Go to the documentation of this file.00001
00002 #ifndef osl_canny_gradient_h_
00003 #define osl_canny_gradient_h_
00004 #ifdef VCL_NEEDS_PRAGMA_INTERFACE
00005 #pragma interface
00006 #endif
00007
00008
00009
00010
00011
00012
00013
00014 void osl_canny_gradient(int xsize_, int ysize_,
00015 float const * const * smooth_,
00016 float * const * dx_,
00017 float * const * dy_,
00018 float * const * grad_);
00019
00020
00021
00022 void osl_canny_gradient_central(int xsize_, int ysize_,
00023 float const * const * smooth_,
00024 float * const * dx_,
00025 float * const * dy_,
00026 float * const * grad_);
00027
00028 #endif // osl_canny_gradient_h_