How to draw a line in a series of points

1 view (last 30 days)
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

Accepted Answer

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

More Answers (1)

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

Categories

Find more on Visual Exploration in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!