Replicate peaks from graph into image
Afficher commentaires plus anciens
Hello,
I have a distance plot in which maxima and minima are already detected. Maxima labelled as red asterix and minima as green.
From there, how do I plot these maxima and minima into a grayscale image.
Thank You.
2 commentaires
Image Analyst
le 27 Juin 2013
Image Analyst
le 28 Juin 2013
You can use plot() to put symbols into the overlay:
hold on;
plot(x, y, 'r*'); % x = column of the image, y = row, not vice versa!
Réponses (0)
Catégories
En savoir plus sur Feature Detection and Extraction dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!