Searched defs:apertureSize (Results 1 - 9 of 9) sorted by relevance

/external/opencv3/modules/cudaimgproc/perf/
H A Dperf_corners.cpp65 const int apertureSize = GET_PARAM(4); local
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); local
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/
H A Dtest_corners.cpp64 int apertureSize; local
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);
112 int apertureSize; local
120 apertureSize = GET_PARAM(4);
131 cv::Ptr<cv::cuda::CornernessCriteria> minEigenVal = cv::cuda::createMinEigenValCorner(src.type(), blockSize, apertureSize, borderType);
137 cv::cornerMinEigenVal(src, dst_gold, blockSize, apertureSize, borderType);
/external/opencv3/modules/imgproc/perf/
H A Dperf_corners.cpp26 int apertureSize = get<2>(GetParam()); local
35 TEST_CYCLE() cornerHarris(src, dst, blockSize, apertureSize, k, borderType);
54 int apertureSize = get<2>(GetParam()); local
62 TEST_CYCLE() cornerEigenValsAndVecs(src, dst, blockSize, apertureSize, borderType);
81 int apertureSize = get<2>(GetParam()); local
89 TEST_CYCLE() cornerMinEigenVal(src, dst, blockSize, apertureSize, borderType);
/external/opencv3/samples/cpp/tutorial_code/TrackingMotion/
H A DcornerHarris_Demo.cpp60 int apertureSize = 3; local
64 cornerHarris( src_gray, dst, blockSize, apertureSize, k, BORDER_DEFAULT );
H A DcornerDetector_Demo.cpp47 int blockSize = 3; int apertureSize = 3; local
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/
H A Dperf_imgproc.cpp162 const int blockSize = 7, apertureSize = 1 + 2 * 3; local
169 OCL_TEST_CYCLE() cv::cornerMinEigenVal(src, dst, blockSize, apertureSize, borderType);
308 int apertureSize = get<0>(params); local
320 OCL_TEST_CYCLE() cv::Canny(img, edges, 50.0, 100.0, apertureSize, L2Grad);
322 if (apertureSize == 3)
/external/opencv3/modules/imgproc/test/ocl/
H A Dtest_imgproc.cpp233 int apertureSize = 3; local
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; local
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; local
274 OCL_OFF(cv::preCornerDetect(src_roi, dst_roi, apertureSize, borderType));
275 OCL_ON(cv::preCornerDetect(usrc_roi, udst_roi, apertureSize, borderType));
/external/opencv3/modules/java/src/
H A Dimgproc.cpp1481 // void Canny(Mat image, Mat& edges, double threshold1, double threshold2, int apertureSize = 3, bool L2gradient = false)
1487 (JNIEnv* env, jclass , jlong image_nativeObj, jlong edges_nativeObj, jdouble threshold1, jdouble threshold2, jint apertureSize, jboolean L2gradient)
1494 cv::Canny( image, edges, (double)threshold1, (double)threshold2, (int)apertureSize, (bool)L2gradient );
1486 Java_org_opencv_imgproc_Imgproc_Canny_10(JNIEnv* env, jclass , jlong image_nativeObj, jlong edges_nativeObj, jdouble threshold1, jdouble threshold2, jint apertureSize, jboolean L2gradient) argument
H A Dimgproc+Imgproc.java762 // C++: void Canny(Mat image, Mat& edges, double threshold1, double threshold2, int apertureSize = 3, bool L2gradient = false)
765 //javadoc: Canny(image, edges, threshold1, threshold2, apertureSize, L2gradient)
766 public static void Canny(Mat image, Mat edges, double threshold1, double threshold2, int apertureSize, boolean L2gradient) argument
769 Canny_0(image.nativeObj, edges.nativeObj, threshold1, threshold2, apertureSize, L2gradient);
2928 // C++: void Canny(Mat image, Mat& edges, double threshold1, double threshold2, int apertureSize = 3, bool L2gradient = false)
2929 private static native void Canny_0(long image_nativeObj, long edges_nativeObj, double threshold1, double threshold2, int apertureSize, boolean L2gradient); argument

Completed in 331 milliseconds