if there is an object (say a line) in an image, how to find the xy coordinates of each pixel that makes the line?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Franklin Prashanth C
am 22 Jan. 2018
Beantwortet: Walter Roberson
am 22 Jan. 2018

The XY coordinate values of each pixel of the red line. Such that I can trace the line. Thank you.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 22 Jan. 2018
Convert to grayscale. Threshold to select the part that is not as bright -- the brightest part will be the white background. Now you can regionprops() and ask it to return PixelList . (Or you might want to consider using bwboundaries or bwtraceboundary. Or you might want to bwmorph() to extract the skeleton and then ask for those pixels...
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!