How to follow only the black line of an image
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Mech Stud
am 21 Mär. 2018
Kommentiert: Mech Stud
am 22 Mär. 2018
I want to follow the black line on this image and get the x,y coordinates of it. However if the black line is not completing an edge of an image (as an extra line extruded as shown) I want to neglect those pixels. I want it to work similar to the concept of line following robot where it checks the next two pixel around it in each direction and maybe decide which pixel's [x,y] values it needs to consider
0 Kommentare
Akzeptierte Antwort
KSSV
am 22 Mär. 2018
I = imread('1.png') ;
I1 = rgb2gray(I) ;
[y,x] = find(I1==0) ;
(x,y) are the locations of the black line. Now you have the points in hand. You can do what you want.
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!