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

4 ビュー (過去 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