histogram doesn't work for .png images?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Ameer Hamza
2020-5-7
编辑:Ameer Hamza
2020-5-7
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)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!