Multiple image histogram on the same figure
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
chess
el 4 de Ag. de 2014
Comentada: Image Analyst
el 4 de Ag. de 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.
0 comentarios
Respuesta aceptada
Image Analyst
el 4 de Ag. de 2014
Why can't you just use hist() or histc(), and bar() or plot()???
2 comentarios
Image Analyst
el 4 de Ag. de 2014
You have to vectorize the array first:
counts = hist(array2d(:), 256);
Otherwise you'll get a histogram for every column in the image.
Más respuestas (0)
Ver también
Categorías
Más información sobre Histograms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!