histogram doesn't work for .png images?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Lulu Firdaus
el 7 de Mayo de 2020
Comentada: Lulu Firdaus
el 8 de Mayo de 2020
hello everyone. I am having trouble with displaying histogram for .png image. the image is grayscale already, so I just use this code.
I=imread('38_training.png');
figure,imhist(I)
but the histogram is.. empty.
any idea why? this is the image i'm trying to show the histagram of.
thank you! please help.
0 comentarios
Respuesta aceptada
Ameer Hamza
el 7 de Mayo de 2020
Editada: Ameer Hamza
el 7 de Mayo de 2020
Your image is binary. It only has white and black pixels. Therefore it only has peaks at 0 and 255. Following example show, it has nothing to do it with png file.
im = imread('pears.png');
imhist(im)
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!