HomeSort by relevance Sort by last modified time
    Searched refs:aperture_size (Results 1 - 14 of 14) sorted by null

  /external/opencv/cv/src/
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 );
    [all...]
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 );
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_size
    [all...]
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));
    [all...]
cvfilter.cpp     [all...]
  /external/opencv/cv/include/
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));
    [all...]
cv.hpp 181 int dx, int dy, int aperture_size, int flags=0 );
  /bionic/libc/kernel/uapi/drm/
drm.h 387 unsigned long aperture_size; member in struct:drm_agp_info
  /external/kernel-headers/original/uapi/drm/
drm.h 558 unsigned long aperture_size; /* bytes */ member in struct:drm_agp_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/drm/
drm.h 556 unsigned long aperture_size; /* bytes */ member in struct:drm_agp_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/drm/
drm.h 556 unsigned long aperture_size; /* bytes */ member in struct:drm_agp_info
  /external/valgrind/main/include/vki/
vki-linux-drm.h 308 unsigned long aperture_size; /* bytes */ member in struct:vki_drm_agp_info
  /hardware/intel/img/libdrm/shared-core/
drm.h 622 unsigned long aperture_size; /**< bytes */ member in struct:drm_agp_info
  /hardware/intel/img/libdrm/libdrm/
xf86drm.c     [all...]

Completed in 245 milliseconds