Compute Histogram of an image using loops
조회 수: 8 (최근 30일)
이전 댓글 표시
I'm trying to computer a histogram of an image by using loops. I cannot use the imhist function. How do I do this?
댓글 수: 3
Guillaume
2018년 1월 22일
As per Matt's comment, we're not going to do your homework, particularly if you show no effort.
There's not even enough details to answer the question properly. What is the class of the image (double, uint8, uint16, all allowed?). How many bins for the histogram? Is the image colour or greyscale?
Note that the uint8, 256 bins, greyscale image is trivially done in four lines of code including the loop.
답변 (1개)
Image Analyst
2018년 1월 22일
Here's a hint. As you said, you need a loop (one or two depending on how you do it) So you'll have something like this for the 2 loop way:
[rows, columns, numberOfColorChannels] = size(yourImage);
% Preallocate histogram.
h = zeros(1, 256);
for row = 1 : rows
for col = 1 : columns
% Now get the gray level
grayLevel = yourImage(row, col); % Assumes gray scale image.
% Compute histogram, h. The index is the gray level for uint8 and the gray level/256 for uint16. Add 1 to the existing value.
if isa(class(yourImage), 'uint16'........
index = ........
else
end
h(index) = ............you finish........
end
end
I didn't do much other than make the for loops, which you already said you wanted to use. Now you should fill in the inside of the for loop to increment h every time you encounter a pixel of that gray level.
댓글 수: 6
Image Analyst
2018년 1월 23일
Why do you think it was a mistake? For a gray level of zero, you can't have the zeroeth index, so 1 is added. The first element of h will hold the count for the number of pixels with gray level 0. There will also be a +1 on the right hand side of the equation.
Guillaume
2018년 1월 24일
Do'h! Of course, you're right. It needs the graylevel+1.
The rest of my comment still stand.
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!