Home
last modified time | relevance | path

Searched refs:Canny (Results 1 – 25 of 54) sorted by relevance

123

/external/opencv3/doc/tutorials/imgproc/imgtrans/canny_detector/
Dcanny_detector.markdown1 Canny Edge Detector {#tutorial_canny_detector}
9 - Use the OpenCV function @ref cv::Canny to implement the Canny Edge Detector.
14 The *Canny Edge detector* was developed by John F. Canny in 1986. Also known to many as the
15 *optimal detector*, Canny algorithm aims to satisfy three main criteria:
55 -# *Hysteresis*: The final step. Canny does use two thresholds (upper and lower):
62 Canny recommended a *upper*:*lower* ratio between 2:1 and 3:1.
70 - Asks the user to enter a numerical value to set the lower threshold for our *Canny Edge
72 - Applies the *Canny Detector* and generates a **mask** (bright lines representing the edges
99 Canny function)
122 -# Create a Trackbar for the user to enter the lower threshold for our Canny detector:
[all …]
/external/opencv3/modules/imgproc/test/ocl/
Dtest_canny.cpp61 PARAM_TEST_CASE(Canny, Channels, AppertureSize, L2gradient, UseRoi) in IMPLEMENT_PARAM_CLASS()
97 OCL_TEST_P(Canny, Accuracy) in OCL_TEST_P() argument
108 OCL_OFF(cv::Canny(src_roi, dst_roi, low_thresh, high_thresh, apperture_size, useL2gradient)); in OCL_TEST_P()
109 OCL_ON(cv::Canny(usrc_roi, udst_roi, low_thresh, high_thresh, apperture_size, useL2gradient)); in OCL_TEST_P()
115 OCL_INSTANTIATE_TEST_CASE_P(ImgProc, Canny, testing::Combine(
Dtest_houghlines.cpp61 Canny(img, src, 100, 150, 3); in PARAM_TEST_CASE()
130 Canny(img, src, 50, 200, 3); in PARAM_TEST_CASE()
/external/opencv3/modules/cudaimgproc/test/
Dtest_canny.cpp58 PARAM_TEST_CASE(Canny, cv::cuda::DeviceInfo, AppertureSize, L2gradient, UseRoi) in PARAM_TEST_CASE() argument
76 CUDA_TEST_P(Canny, Accuracy) in CUDA_TEST_P() argument
90 cv::Canny(img, edges_gold, low_thresh, high_thresh, apperture_size, useL2gradient); in CUDA_TEST_P()
95 INSTANTIATE_TEST_CASE_P(CUDA_ImgProc, Canny, testing::Combine(
/external/opencv3/doc/py_tutorials/py_imgproc/py_canny/
Dpy_canny.markdown1 Canny Edge Detection {#tutorial_py_canny}
9 - Concept of Canny edge detection
10 - OpenCV functions for that : **cv2.Canny()**
15 Canny Edge Detection is a popular edge detection algorithm. It was developed by John F. Canny in
72 Canny Edge Detection in OpenCV
75 OpenCV puts all the above in single function, **cv2.Canny()**. We will see how to use it. First
87 edges = cv2.Canny(img,100,200)
103 -# Canny edge detector at [Wikipedia](http://en.wikipedia.org/wiki/Canny_edge_detector)
104 -# [Canny Edge Detection Tutorial](http://dasl.mem.drexel.edu/alumni/bGreen/www.pages.drexel.edu/_…
110 -# Write a small application to find the Canny edge detection whose threshold values can be varied
/external/opencv3/modules/cudaimgproc/perf/
Dperf_canny.cpp54 PERF_TEST_P(Image_AppertureSz_L2gradient, Canny,
84 TEST_CYCLE() cv::Canny(image, dst, low_thresh, high_thresh, apperture_size, useL2gradient);
Dperf_hough.cpp149 cv::Canny(image, mask, 50, 100);
243 cv::Canny(image, edges, 50, 100); in PERF_TEST_P()
312 cv::Canny(image, edges, 50, 100); in PERF_TEST_P()
/external/opencv3/doc/tutorials/introduction/windows_visual_studio_image_watch/
Dwindows_visual_studio_image_watch.markdown39 #include <opencv2/imgproc/imgproc.hpp> // cv::Canny()
50 << "image from a file and runs the Canny edge detector. " << endl
75 Canny(input, edges, 10, 100);
143 over the *cv::Canny()* call, you will see a thumbnail of the edge image appear in the image list.
145 Now assume you want to do a visual sanity check of the *cv::Canny()* implementation. Bring the
/external/opencv3/samples/python2/
Dedge.py43 edge = cv2.Canny(gray, thrs1, thrs2, apertureSize=5)
Ddistrans.py41 mark = cv2.Canny(img, thrs, 3*thrs)
Dhoughlines.py18 dst = cv2.Canny(src, 50, 200)
Dsquares.py23 bin = cv2.Canny(gray, 0, 50, apertureSize=5)
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/
DCannyDetector_Demo.cpp37 Canny( detected_edges, detected_edges, lowThreshold, lowThreshold*ratio, kernel_size ); in CannyThreshold()
DHoughLines_Demo.cpp53 Canny( src_gray, edges, 50, 200, 3 ); in main()
/external/opencv3/samples/cpp/
Dlsd_lines.cpp29 Canny(image, image, 50, 200, 3); // Apply canny edge in main()
Dedge.cpp20 Canny(edge, edge, edgeThresh, edgeThresh*3, 3); in onTrackbar()
Dhoughlines.cpp30 Canny(src, dst, 50, 200, 3); in main()
/external/opencv3/modules/imgproc/perf/
Dperf_houghLines.cpp32 Canny(image, image, 0, 0);
Dperf_canny.cpp34 TEST_CYCLE() Canny(img, edges, thresh_low, thresh_high, aperture, useL2);
/external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/
DfindContours_demo.cpp64 Canny( src_gray, canny_output, thresh, thresh*2, 3 ); in thresh_callback()
Dmoments_demo.cpp59 Canny( src_gray, canny_output, thresh, thresh*2, 3 ); in thresh_callback()
/external/opencv3/samples/winrt_universal/VideoCaptureXAML/video_capture_xaml/video_capture_xaml.Shared/
Dmain.cpp122 Canny(edges, edges, 0, 30, 3); in cvFilterCanny()
/external/opencv3/samples/gpu/
Dhoughlines.cpp34 cv::Canny(src, mask, 100, 200, 3); in main()
/external/opencv3/modules/core/perf/opencl/
Dperf_bufferpool.cpp102 Canny(src, dst, thresh_low, thresh_high, aperture, useL2); in OCL_PERF_TEST_P()
/external/opencv3/modules/imgproc/perf/opencl/
Dperf_imgproc.cpp305 OCL_PERF_TEST_P(CannyFixture, Canny, ::testing::Combine(OCL_PERF_ENUM(3, 5), Bool()))
320 OCL_TEST_CYCLE() cv::Canny(img, edges, 50.0, 100.0, apertureSize, L2Grad);

123