Searched refs:CV_SCHARR (Results 1 - 4 of 4) sorted by relevance

/external/opencv/cv/src/
H A Dcvcorner.cpp235 if( (aperture_size < 3 && aperture_size != CV_SCHARR) || !(aperture_size & 1) )
237 "Derivative filter aperture size must be a positive odd number >=3 or CV_SCHARR" );
245 aperture_size = aperture_size == CV_SCHARR ? 3 : aperture_size;
251 if( depth == CV_8U && aperture_size0 == CV_SCHARR )
256 else if( depth == CV_32F && aperture_size0 == CV_SCHARR )
309 if( aperture_size0 == CV_SCHARR )
541 if( aperture_size == CV_SCHARR )
542 CV_ERROR( CV_StsOutOfRange, "CV_SCHARR is not supported by this function" );
H A Dcvderiv.cpp206 if( ((aperture_size == CV_SCHARR || aperture_size == 3 || aperture_size == 5) &&
219 if( aperture_size == CV_SCHARR )
H A Dcvfilter.cpp2029 int kx_size = aperture_size == CV_SCHARR ? 3 : aperture_size, ky_size = kx_size;
2044 if( aperture_size == CV_SCHARR )
/external/opencv/cv/include/
H A Dcv.h148 #define CV_SCHARR -1 macro

Completed in 160 milliseconds