how i display cluster in an image

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)

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

Parul - are you still there? What's the current status of your problem?

Sign in to comment.

Categories

Find more on Statistics and Machine Learning Toolbox in Help Center and File Exchange

Asked:

on 17 Apr 2013

Community Treasure Hunt

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

Start Hunting!