how i display cluster in an image
Afficher commentaires plus anciens
hiiiiii........ I create cluster of keypoints but how i display it on image .suppose i have cluster c then how i display c ????
Réponses (1)
Image Analyst
le 17 Avr 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 commentaire
Image Analyst
le 18 Avr 2013
Parul - are you still there? What's the current status of your problem?
Catégories
En savoir plus sur Statistics and Machine Learning Toolbox dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!