can you help me? i want to show min and max value on RGB image with histogram, but is not work correctly?

조회 수: 11 (최근 30일)
%this is my code, and error report
[filename,pathname] = uigetfile({'*.jpg;*.bmp'},'Select an Image');
I = imread([pathname filename]);
imshow(I);
[bw, rgb]=hsvth(I);
figure, imshow(bw);
figure, imshow(rgb);
img1 = imcrop(rgb);
img2 = imcrop(rgb);
%imshow(img1);
%imshow(img2);
%I=imread('autumn.tif');
%Histogram
R=img1(:,:,1);
G=img1(:,:,2);
B=img1(:,:,3);
figure,
subplot(3,1,1)
imhist(R)
subplot(3,1,2)
imhist(G)
subplot(3,1,3)
imhist(B)
%R Value
red_min=min(min(R(:,:,1)))
red_max=max(max(R(:,:,1)))
%G Value
green_min=min(min(G(:,:,2)))
green_max=max(max(G(:,:,2)))
%B Value
blue_min=min(min(B(:,:,3)))
blue_max=max(max(B(:,:,3)))

채택된 답변

KSSV
KSSV 2020년 4월 8일
%R Value
red_min=min(R(:)) ;
red_max=max(R(:)) ;
%G Value
green_min=min(G(:)) ;
green_max=max(G(:)) ;
%B Value
blue_min=min(B(:)) ;
blue_max=max(B(:)) ;
Note that G, B are 1D matrices. So don't use 2 and 3. You need not to use min twice.

추가 답변 (0개)

카테고리

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