フィルターのクリア

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