Find the co-ordinates of the end points of white line in the image
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I removed the noise in the image with the edge detection command and threshold,How do i get the end co-ordinates if the white line?
<<
>>
0 Commenti
Risposte (1)
Image Analyst
il 3 Mag 2016
You can use the 'endpoints' option of bwmorph():
endPointsImage = bwmorph(binaryImage, 'endpoints');
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!