필터 지우기
필터 지우기

how to find pixel having a specific value and copy those regions to a new matrix

조회 수: 2 (최근 30일)
find pixel having a specific value and copy those regions to a new matrix...
[rows, columns] = find(L == 0);
how to copy to a new matrix

채택된 답변

Bjorn Gustavsson
Bjorn Gustavsson 2017년 9월 20일
Something like this should get what you ask for:
Img = peaks;
clf
subplot(2,1,1)
imagesc(Img),colorbar
I2 = 0*Img;
Irange = [2 4];
I2(Irange(1)<=Img(:)&Img(:)<=Irange(2)) = Img(Irange(1)<=Img(:)&Img(:)<=Irange(2));
subplot(2,1,2)
imagesc(I2)
HTH
  댓글 수: 1
Walter Roberson
Walter Roberson 2017년 9월 20일
I usually put the condition into a variable to avoid recomputing it.
I2 = zeros(size(IMG), class(IMG)); %but 0*Img works too
mask = Irange(1) <= Img & Img <= Irange(2);
I2(mask) = Img(mask);

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by