How would I find the upper and lower threshold limits that the edge-canny function uses?
조회 수: 4 (최근 30일)
이전 댓글 표시
After I run an edge detection function on an image
BW = edge(I, 'canny')
how can I then find the upper and lower thresholds that MATLAB set when running the algorithim.
Once I have those, how can I modify them?
댓글 수: 0
채택된 답변
Image Analyst
2016년 8월 11일
Look at the help for edge(). It is returned from edge() as an output argument.
[BW, threshOut] = edge(I, 'canny')
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!