I'm wondering if someone can explain the difference between these two Matlab algorithms, bwmorph(binary_image,'thin',N_iterations)
and bwmorph(binary_image,'skel',N_iterations)
. For my application, they produce results that are typically slightly different from each other, and I am trying to figure out the difference. Thanks!
Asked
Active
Viewed 690 times
0

Llouis
- 26
- 5
-
What happens for very big number of iteration? – Ander Biguri Mar 30 '18 at 18:12
-
https://se.mathworks.com/help/images/ref/bwmorph.html describes the `thin` version whereas the `skel` uses single applylut at each iteration. So I guess the added complexity would be there to improve the result, e.g. lesser scanline order dependency, more central, less noisy skeleton etc. – mainactual Mar 30 '18 at 19:28