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

2 次查看(过去 30 天)

回答(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);

类别

Help CenterFile Exchange 中查找有关 Design Condition Indicators Interactively 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by