Effacer les filtres
Effacer les filtres

How to draw a line in a series of points

3 vues (au cours des 30 derniers jours)
Kim
Kim le 16 Jan 2012
This is image is after I did a centroid plotting. So how can I draw the line through
s = regionprops(Iskel,'centroid');
centroids = cat(1,s.Centroid);
imshow(maskedIbw)
hold on
plot(centroids(:,1),centroids(:,2),'b*')
hold off

Réponse acceptée

Jaap
Jaap le 16 Jan 2012
plot(centroids(:,1),centroids(:,2),'b-')

Plus de réponses (1)

Kim
Kim le 16 Jan 2012
plot(centroids(:,1),centroids(:,2),'LineWidth',2,'Color','green')

Catégories

En savoir plus sur Visual Exploration 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