HomeSort by relevance Sort by last modified time
    Searched refs:aperture_size (Results 1 - 23 of 23) 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/opencv3/modules/imgproc/test/
test_filter.cpp 57 CvSize aperture_size; member in class:CV_FilterBaseTest
74 aperture_size = cvSize(0,0);
140 aperture_size.width = cvtest::randInt(rng) % max_aperture_size + 1;
141 aperture_size.height = cvtest::randInt(rng) % max_aperture_size + 1;
142 anchor.x = cvtest::randInt(rng) % aperture_size.width;
143 anchor.y = cvtest::randInt(rng) % aperture_size.height;
146 sizes[INPUT][1] = aperture_size;
230 eldata.resize(aperture_size.width*aperture_size.height);
235 for( i = 0; i < aperture_size.height; i++
    [all...]
test_canny.cpp 60 int aperture_size; member in class:CV_CannyTest
73 aperture_size = 0;
91 aperture_size = cvtest::randInt(rng) % 2 ? 5 : 3;
92 thresh_range = aperture_size == 3 ? 300 : 1000;
128 aperture_size + (use_true_gradient ? CV_CANNY_L2_GRADIENT : 0));
133 aperture_size + (use_true_gradient ? CV_CANNY_L2_GRADIENT : 0));
162 int aperture_size, bool use_true_gradient )
164 int m = aperture_size;
254 test_Canny( src, dst, threshold1, threshold2, aperture_size, use_true_gradient );
  /external/opencv3/modules/imgproc/src/
canny.cpp 99 int aperture_size, bool L2gradient, int cn, const Size & size)
131 if (aperture_size == 3 && !_src.isSubmatrix())
172 Sobel(_src, dx, CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICATE);
173 Sobel(_src, dy, CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICATE);
244 aperture_size(_aperture_size), L2gradient(_L2gradient)
266 uchar ksize2 = aperture_size / 2;
278 Sobel(src, tempdx.rowRange(1, tempdx.rows - 1), CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICATE);
279 Sobel(src, tempdy.rowRange(1, tempdy.rows - 1), CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICATE);
293 CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICATE);
295 CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICATE)
572 int aperture_size; member in class:cv::tbbCanny
    [all...]
corner.cpp 268 int aperture_size, int op_type, double k=0.,
272 if (tegra::useTegra() && tegra::cornerEigenValsVecs(src, eigenv, block_size, aperture_size, op_type, k, borderType))
280 double scale = (double)(1 << ((aperture_size > 0 ? aperture_size : 3) - 1)) * block_size;
281 if( aperture_size < 0 )
290 if( aperture_size > 0 )
292 Sobel( src, Dx, CV_32F, 1, 0, aperture_size, scale, 0, borderType );
293 Sobel( src, Dy, CV_32F, 0, 1, aperture_size, scale, 0, borderType );
379 float scale, int aperture_size, int borderType)
388 if ((aperture_size == 3 || aperture_size == 5 || aperture_size == 7 || aperture_size == -1) &
    [all...]
deriv.cpp     [all...]
  /external/opencv3/modules/video/include/opencv2/video/
tracking_c.h 127 int aperture_size CV_DEFAULT(3));
  /external/opencv3/modules/imgproc/include/opencv2/imgproc/
imgproc_c.h 186 (aperture_size = 1,3,5,7) or Scharr (aperture_size = -1) operator.
192 int aperture_size CV_DEFAULT(3));
198 int aperture_size CV_DEFAULT(3) );
    [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 );
  /external/libdrm/include/drm/
drm.h 560 unsigned long aperture_size; /* bytes */ member in struct:drm_agp_info
  /external/opencv3/modules/ts/include/opencv2/
ts.hpp 125 CV_EXPORTS Mat calcLaplaceKernel2D( int aperture_size );
  /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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/drm/
drm.h 559 unsigned long aperture_size; /* bytes */ member in struct:drm_agp_info
  /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
  /external/valgrind/include/vki/
vki-linux-drm.h 308 unsigned long aperture_size; /* bytes */ member in struct:vki_drm_agp_info
  /external/opencv3/modules/ts/src/
ts_func.cpp     [all...]
  /external/libdrm/
xf86drm.c     [all...]

Completed in 1246 milliseconds