how i display cluster in an image
Show older comments
hiiiiii........ I create cluster of keypoints but how i display it on image .suppose i have cluster c then how i display c ????
Answers (1)
Image Analyst
on 17 Apr 2013
Have you tried the plot() command:
plot(x, y, 'ro');
or try to use the convex hull if you want the outline/envelope of a bunch of point?
hullIndexes = convhull(x,y);
plot(x(hullIndexes), y(hullIndexes), 'r-');
1 Comment
Image Analyst
on 18 Apr 2013
Parul - are you still there? What's the current status of your problem?
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!