HomeSort by relevance Sort by last modified time
    Searched defs:apertureSize (Results 1 - 8 of 8) sorted by null

  /external/opencv3/modules/cudaimgproc/perf/
perf_corners.cpp 65 const int apertureSize = GET_PARAM(4);
79 cv::Ptr<cv::cuda::CornernessCriteria> harris = cv::cuda::createHarrisCorner(img.type(), blockSize, apertureSize, k, borderMode);
89 TEST_CYCLE() cv::cornerHarris(img, dst, blockSize, apertureSize, k, borderMode);
109 const int apertureSize = GET_PARAM(4);
121 cv::Ptr<cv::cuda::CornernessCriteria> minEigenVal = cv::cuda::createMinEigenValCorner(img.type(), blockSize, apertureSize, borderMode);
131 TEST_CYCLE() cv::cornerMinEigenVal(img, dst, blockSize, apertureSize, borderMode);
  /external/opencv3/modules/cudaimgproc/test/
test_corners.cpp 55 IMPLEMENT_PARAM_CLASS(ApertureSize, int);
58 PARAM_TEST_CASE(CornerHarris, cv::cuda::DeviceInfo, MatType, BorderType, BlockSize, ApertureSize)
64 int apertureSize;
72 apertureSize = GET_PARAM(4);
85 cv::Ptr<cv::cuda::CornernessCriteria> harris = cv::cuda::createHarrisCorner(src.type(), blockSize, apertureSize, k, borderType);
91 cv::cornerHarris(src, dst_gold, blockSize, apertureSize, k, borderType);
101 testing::Values(ApertureSize(0), ApertureSize(3), ApertureSize(5), ApertureSize(7))))
    [all...]
  /external/opencv3/modules/imgproc/perf/
perf_corners.cpp 26 int apertureSize = get<2>(GetParam());
35 TEST_CYCLE() cornerHarris(src, dst, blockSize, apertureSize, k, borderType);
54 int apertureSize = get<2>(GetParam());
62 TEST_CYCLE() cornerEigenValsAndVecs(src, dst, blockSize, apertureSize, borderType);
81 int apertureSize = get<2>(GetParam());
89 TEST_CYCLE() cornerMinEigenVal(src, dst, blockSize, apertureSize, borderType);
  /external/opencv3/samples/cpp/tutorial_code/TrackingMotion/
cornerHarris_Demo.cpp 60 int apertureSize = 3;
64 cornerHarris( src_gray, dst, blockSize, apertureSize, k, BORDER_DEFAULT );
cornerDetector_Demo.cpp 47 int blockSize = 3; int apertureSize = 3;
53 cornerEigenValsAndVecs( src_gray, myHarris_dst, blockSize, apertureSize, BORDER_DEFAULT );
74 cornerMinEigenVal( src_gray, myShiTomasi_dst, blockSize, apertureSize, BORDER_DEFAULT );
  /external/opencv3/modules/imgproc/perf/opencl/
perf_imgproc.cpp 162 const int blockSize = 7, apertureSize = 1 + 2 * 3;
169 OCL_TEST_CYCLE() cv::cornerMinEigenVal(src, dst, blockSize, apertureSize, borderType);
308 int apertureSize = get<0>(params);
320 OCL_TEST_CYCLE() cv::Canny(img, edges, 50.0, 100.0, apertureSize, L2Grad);
322 if (apertureSize == 3)
  /external/opencv3/modules/imgproc/test/ocl/
test_imgproc.cpp 233 int apertureSize = 3;
235 OCL_OFF(cv::cornerMinEigenVal(src_roi, dst_roi, blockSize, apertureSize, borderType));
236 OCL_ON(cv::cornerMinEigenVal(usrc_roi, udst_roi, blockSize, apertureSize, borderType));
252 int apertureSize = 3;
255 OCL_OFF(cv::cornerHarris(src_roi, dst_roi, blockSize, apertureSize, k, borderType));
256 OCL_ON(cv::cornerHarris(usrc_roi, udst_roi, blockSize, apertureSize, k, borderType));
272 const int apertureSize = blockSize;
274 OCL_OFF(cv::preCornerDetect(src_roi, dst_roi, apertureSize, borderType));
275 OCL_ON(cv::preCornerDetect(usrc_roi, udst_roi, apertureSize, borderType));
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 118 milliseconds