how to determine the coordinates of points
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
kmla
le 28 Nov 2017
Réponse apportée : Bshara Murr
le 28 Nov 2017
I want to determinate the coordinates of this points
0 commentaires
Réponse acceptée
Bshara Murr
le 28 Nov 2017
I = imread('bwimage.jpg');
I = rgb2gray(I);
N = bwlabel(I);
s = regionprops(N, 'centroid');
XY=[s.Centroid];
XY(1:2:end);
XY(2:2:end);
The XY contains the coordinates the last two lines will give you two arrays of X and Y coordinates
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Lighting, Transparency, and Shading 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!