how to divide the RGB color space into 64 cubic blocks ?
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello
can any one tell me how to to divide the RGB color space into 64 cubic blocks with four equal partitions along each dimension.
댓글 수: 2
John D'Errico
2013년 12월 27일
편집: John D'Errico
2013년 12월 27일
How? You do it. Whats the problem? All that matters is what you will do with it, and only you know that.
채택된 답변
Image Analyst
2013년 12월 27일
편집: Image Analyst
2013년 12월 27일
Like John said, it depends on what you will do with it - how you will use it. If you want to make a histogram, you need to find out what block you're in
for col = 1 : cols
for row = 1 : rows
% Get the RGB values of the image.
rValue = rgbImage(row, col, 1);
gValue = rgbImage(row, col, 2);
bValue = rgbImage(row, col, 3);
% Find out which of the 64 blocks they belong to.
% Block numbers range from 1 to 4.
rBlock = ceil(rValue / 64);
gBlock = ceil(gValue / 64);
bBlock = ceil(bValue / 64);
% Increment the histogram.
rgbHist(rBlock, gBlock, bBlock) = rgbHist(rBlock, gBlock, bBlock) + 1;
end
end
Also see attached file.
댓글 수: 5
추가 답변 (0개)
참고 항목
카테고리
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!