필터 지우기
필터 지우기

CONDITION CHECKING R G B VALUES IN AN IMAGE WITH SCALAR USING MATLAB?

조회 수: 4 (최근 30일)
meenu v
meenu v 2018년 5월 29일
댓글: Image Analyst 2018년 5월 29일
hi, I have an image 'pq'(RGB image), which is shown below
now i want to check the following conditions by obtaining the R, G, B from the image
Where R, G, B are
R=pq(:,1)
G=pq(:,2)
B=pq(:,3)
  댓글 수: 6
meenu v
meenu v 2018년 5월 29일
편집: meenu v 2018년 5월 29일
Yp,but on excecution it is showing the error
"Operands to the || and && operators must be convertible to logical scalar values."
Paolo
Paolo 2018년 5월 29일
The following works for me:
num = xlsread('pq.xlsx')
R = num(:,1);
G = num(:,2);
B = num(:,3);
for ii=1:numel(R)
if(R(ii)>=1 && R(ii)<=250) && (G(ii)>=0 && G(ii)<=1) && (B(ii)>=0 && B(ii)<=255)
disp(R(ii));
end
end
Are you sure that the second condition is correct for the green value? Because you are checking between 0 and 1 only.

댓글을 달려면 로그인하십시오.

답변 (2개)

Image Analyst
Image Analyst 2018년 5월 29일
Try this:
[rows, columns] = size(pq)
for row = 1 : rows
R = pq(row, 1);
G = pq(row, 2);
B = pq(row, 3);
if (R>=1 && R<=250) && (G>=0 && G<=1) && (B>=0 && B<=255)
% and so on....
end
end

Ameer Hamza
Ameer Hamza 2018년 5월 29일
You can solve the error by converting && to a single &
(R>=1 & R<=250) & (G>=0 & G<=1) & (B>=0 & B<=255)
but I doubt it will actually do, what you are thinking it will do.
  댓글 수: 3
Ameer Hamza
Ameer Hamza 2018년 5월 29일
But OP needs to understand that using a vector logical expression with if and while condition need to be handled carefully. The expression is essentially equaled to
if all((R>=1 & R<=250) & (G>=0 & G<=1) & (B>=0 & B<=255))
Unless the requirement is to apply the same condition to every pixel. This will probably result in a wrong logic.
Image Analyst
Image Analyst 2018년 5월 29일
Yeah we talked about all this in his earlier question - about whether to use single or double ampersands. Now (in this question) he has an array pq, that seems to be a subset of all the pixels in the image. Perhaps from a masking operation - who knows? That's what I do in my answer - just the subset. Regardless, I still have doubts he knows what he wants to do, or is asking the correct question.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by