what is error in this program ?

조회 수: 4 (최근 30일)
venmal devi
venmal devi 2015년 9월 2일
편집: Walter Roberson 2015년 9월 2일
%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');

답변 (1개)

Walter Roberson
Walter Roberson 2015년 9월 2일
편집: Walter Roberson 2015년 9월 2일
plot(x, yRed, 'r', x, yGreen, 'g', x, yBlue, 'b');
legend({'Red', 'Green', 'Blue'});
Also, it is firmly advised never to name a variable "image" as that interferes with using a fundamental MATLAB graphics routine.

카테고리

Help CenterFile Exchange에서 Modify Image Colors에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by