Canny Edge Detection - Automatic/Adaptive Thresholding
14 ビュー (過去 30 日間)
古いコメントを表示
I have read in the docs for the 'edge' function that when a low and high threshold are not defined when calling the 'canny' edge operator, MATLAB automatically determines the best values for the given image. The threshold values can be obtained by specifying outputs to the argument. But can anyone explain (simply, if possible) how MATLAB calculates these threshold values, and whether the process can be slightly adjusted to bias toward only the stronger edges being identified?
I know the doc files hint at how this is done, but I don't quite understand it...
0 件のコメント
回答 (4 件)
Sean de Wolski
2012 年 2 月 29 日
You could place a break point in the subfunction parse_inputs() of edge().
edit edge
Scroll down and place breakpoint and follow the variable Thresh.
Aaditya Kalsi
2012 年 3 月 28 日
It means that out of the detected edge values, 70% of the pixels will not be considered edges. Values higher than the 70th percentile among the values in the Edge image will be considered as edges.
That's what it seems like to me!
0 件のコメント
David Young
2012 年 3 月 28 日
The documentation ought to be explicit about points like this! I think you could reasonably put in an enhancement request.
When I use Canny, I often call the function twice. The first time I capture the second result (and discard the edge image), and then I multiply the returned threshold by a constant to slightly increase or decrease it to get the threshold argument for the second call. Not very efficient, but it does allow reasonable control of edge density.
0 件のコメント
Omer Moussaffi
2014 年 5 月 22 日
Hitching on Phillip's question - can I use the automatic thresholding with the Matlab Coder?
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!