error in using imhist in matlab 2015a. i cant understnad why error is coming

조회 수: 2 (최근 30일)
SRUTHI BANDI
SRUTHI BANDI 2020년 2월 7일
답변: Image Analyst 2020년 2월 7일

답변 (1개)

Image Analyst
Image Analyst 2020년 2월 7일
Probably because it's color. Use histogram() or else use imhist() on each color channel one at a time.
% Extract the individual red, green, and blue color channels.
redChannel = im(:, :, 1);
greenChannel = im(:, :, 2);
blueChannel = im(:, :, 3);
[countR, grayLevelsR] = imhist(redChannel);
[countG, grayLevelsG] = imhist(greenChannel);
[countB, grayLevelsB] = imhist(blueChannel);
Or convert to gray scale:
grayImage = rgb2gray(im);
[countR, grayLevelsR] = imhist(grayImage);

Community Treasure Hunt

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

Start Hunting!

Translated by