How to get Color Histogram of an Image

조회 수: 24 (최근 30일)
cse batch4
cse batch4 2015년 3월 5일
답변: Abcd efgh 2021년 4월 23일
Hello everyone,I want to get Color Histogram from a image.What is the Code to get color histogram.what is the difference between HISTOGRAM and COLOR HISTOGRAM.How to show it on screen.

채택된 답변

Mehdi Saberioon
Mehdi Saberioon 2015년 3월 5일
편집: Mehdi Saberioon 2015년 3월 5일
Histogram is displaying the distribution of data. Color histogram shows distribution for each band.
%Split into RGB Channels
Red = image(:,:,1);
Green = image(:,:,2);
Blue = image(:,:,3);
%Get histValues for each channel
[yRed, x] = imhist(Red);
[yGreen, x] = imhist(Green);
[yBlue, x] = imhist(Blue);
%Plot them together in one plot
plot(x, yRed, 'Red', x, yGreen, 'Green', x, yBlue, 'Blue');
  댓글 수: 4
teja jayavarapu
teja jayavarapu 2018년 1월 13일
How to find the bin count in hsv color space
yara anitha
yara anitha 2020년 5월 13일
can anyone expain the output?

댓글을 달려면 로그인하십시오.

추가 답변 (3개)

teja jayavarapu
teja jayavarapu 2018년 1월 13일
I have quantized hsv into 8×3×3 combinations,so I want to find what is number of pixels per each bin how do I do it
  댓글 수: 1
Image Analyst
Image Analyst 2018년 1월 13일
It's the value of the histogram that you say you've created.

댓글을 달려면 로그인하십시오.


mariena aloor
mariena aloor 2018년 10월 22일
Sir i want to apply moving average filter to the individual color histogram planes

Abcd efgh
Abcd efgh 2021년 4월 23일
Please refer this tutorial--
Hope this will be helpful.
Happy Learning :-)

카테고리

Help CenterFile Exchange에서 Histograms에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by