Canny Edge Detection - Automatic/Adaptive Thresholding
Mostra commenti meno recenti
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...
Risposte (4)
Sean de Wolski
il 29 Feb 2012
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.
1 Commento
Philip
il 15 Mar 2012
Aaditya Kalsi
il 28 Mar 2012
2 voti
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!
David Young
il 28 Mar 2012
0 voti
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.
Omer Moussaffi
il 22 Mag 2014
0 voti
Hitching on Phillip's question - can I use the automatic thresholding with the Matlab Coder?
Categorie
Scopri di più su Object Analysis in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!