Effacer les filtres
Effacer les filtres

Multiple image histogram on the same figure

2 vues (au cours des 30 derniers jours)
chess
chess le 4 Août 2014
Commenté : Image Analyst le 4 Août 2014
Hi I would like to know how I can plot multiple histogram on the same figure with different color next to each other using imhist command. I know how to do it using hist for a vector but I am looking for doing exactly same thing but for images. something like uploaded image but using imhist.

Réponse acceptée

Image Analyst
Image Analyst le 4 Août 2014
Why can't you just use hist() or histc(), and bar() or plot()???
  2 commentaires
chess
chess le 4 Août 2014
Because when I do that I get something like: which is very strange.
Image Analyst
Image Analyst le 4 Août 2014
You have to vectorize the array first:
counts = hist(array2d(:), 256);
Otherwise you'll get a histogram for every column in the image.

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by