/external/opencv/cv/src/ |
H A D | cvcorner.cpp | 204 int aperture_size, int op_type, double k=0. ) 219 int aperture_size0 = aperture_size; 235 if( (aperture_size < 3 && aperture_size != CV_SCHARR) || !(aperture_size & 1) ) 245 aperture_size = aperture_size == CV_SCHARR ? 3 : aperture_size; 246 el_size = cvSize( aperture_size, aperture_size ); 203 icvCornerEigenValsVecs( const CvMat* src, CvMat* eigenv, int block_size, int aperture_size, int op_type, double k=0. ) argument 447 cvCornerHarris( const CvArr* srcarr, CvArr* harris_responce, int block_size, int aperture_size, double k ) argument [all...] |
H A D | cvcanny.cpp | 49 double low_thresh, double high_thresh, int aperture_size ) 62 int flags = aperture_size; 86 aperture_size &= INT_MAX; 87 if( (aperture_size & 1) == 0 || aperture_size < 3 || aperture_size > 7 ) 94 cvSobel( src, dx, 1, 0, aperture_size ); 95 cvSobel( src, dy, 0, 1, aperture_size );
|
H A D | cvmotempl.cpp | 162 int aperture_size ) 178 float gradient_epsilon = 1e-4f * aperture_size * aperture_size; 188 if( aperture_size < 3 || aperture_size > 7 || (aperture_size & 1) == 0 ) 189 CV_ERROR( CV_StsOutOfRange, "aperture_size must be 3, 5 or 7" ); 217 CV_CALL( cvSobel( mhi, dX_min, 1, 0, aperture_size )); 218 CV_CALL( cvSobel( mhi, dY_max, 0, 1, aperture_size )); 249 CV_CALL( el = cvCreateStructuringElementEx( aperture_size, aperture_siz [all...] |
H A D | cvderiv.cpp | 177 cvSobel( const void* srcarr, void* dstarr, int dx, int dy, int aperture_size ) 206 if( ((aperture_size == CV_SCHARR || aperture_size == 3 || aperture_size == 5) && 219 if( aperture_size == CV_SCHARR ) 294 int bufsize = 0, masksize = aperture_size == 3 ? 33 : 55; 339 aperture_size, origin ? CvSepFilter::FLIP_KERNEL : 0)); 798 cvLaplace( const void* srcarr, void* dstarr, int aperture_size ) 818 if( (aperture_size == 3 || aperture_size [all...] |
H A D | cvfilter.cpp | 2023 int dx, int dy, int aperture_size, int flags ) 2029 int kx_size = aperture_size == CV_SCHARR ? 3 : aperture_size, ky_size = kx_size; 2034 CV_ERROR( CV_StsOutOfRange, "Incorrect aperture_size" ); 2044 if( aperture_size == CV_SCHARR )
|
/external/opencv/cv/include/ |
H A D | cv.h | 152 (aperture_size = 1,3,5,7) or Scharr (aperture_size = -1) operator. 156 int aperture_size CV_DEFAULT(3)); 160 int aperture_size CV_DEFAULT(3) ); 536 int aperture_size CV_DEFAULT(3)); 990 double threshold2, int aperture_size CV_DEFAULT(3) ); 996 int aperture_size CV_DEFAULT(3) ); 1001 int block_size, int aperture_size CV_DEFAULT(3) ); 1006 int block_size, int aperture_size CV_DEFAULT(3) ); 1011 int block_size, int aperture_size CV_DEFAUL [all...] |
H A D | cv.hpp | 181 int dx, int dy, int aperture_size, int flags=0 );
|
/external/libdrm/include/drm/ |
H A D | drm.h | 560 unsigned long aperture_size; /* bytes */ member in struct:drm_agp_info
|
/external/kernel-headers/original/uapi/drm/ |
H A D | drm.h | 558 unsigned long aperture_size; /* bytes */ member in struct:drm_agp_info
|
/external/valgrind/include/vki/ |
H A D | vki-linux-drm.h | 308 unsigned long aperture_size; /* bytes */ member in struct:vki_drm_agp_info
|
/external/libdrm/ |
H A D | xf86drm.c | 1958 return i.aperture_size;
|