Effacer les filtres
Effacer les filtres

How i get x y values of start point and end point of a white curve from image

1 vue (au cours des 30 derniers jours)
How i get x y values of start point and end point of a white curve from image image is added .... plz help me...

Réponse acceptée

KSSV
KSSV le 28 Août 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')
  2 commentaires
Sajid Rahim
Sajid Rahim le 28 Août 2017
Sir how i convert the 5.png image to like 555.png... i.e to draw 2 lines...... one frome start point and one line from end point.... plzz..

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by