Filter löschen
Filter löschen

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

2 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

Bjorn Gustavsson
Bjorn Gustavsson am 20 Sep. 2017
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 Kommentar
Walter Roberson
Walter Roberson am 20 Sep. 2017
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);

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by