フィルターのクリア

Efficient way to set specific range of pixels to zero.

1 回表示 (過去 30 日間)
Ivan Shorokhov
Ivan Shorokhov 2015 年 4 月 23 日
コメント済み: Ivan Shorokhov 2015 年 4 月 24 日
Hello everybody,
I have gray image with pixels from 0 to 255. And I would like to set pixel from 90 to 100 to zero.
I've wrote following code:
new_gray=gray;
new_gray(gray>90&gray<100) = 255;figure;imshow(new_gray);
And it seems to be working fine, but I'm wondering, if there are any other ways of doing it?
Thanks in advance.

採用された回答

Image Analyst
Image Analyst 2015 年 4 月 23 日
You could use intlut(). Something like
lut = gray(256);
% Make gray levels 91 through 99 be 0
lut(92:100) ;
new_gray = intlut(grayImage, lut);
DON'T name your image gray. That is the name of a built-in function that creates a colormap.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeRed についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by