How i get x y values of start point and end point of a white curve from image
1 view (last 30 days)
Show older comments
How i get x y values of start point and end point of a white curve from image image is added .... plz help me...
0 Comments
Accepted Answer
KSSV
on 28 Aug 2017
I = imread('5.png') ;
I = rgb2gray(I) ;
[y,x] = find(I) ;
figure
imshow(I)
hold on
plot(x,y,'.r')
plot(x(1),y(1),'*y')
plot(x(end),y(end),'*y')
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!