how to set all pixels in the range (100 , 190) to 40 for some picture called "school" ??

2 次查看(过去 30 天)
how to set all pixels in the range (100 , 190) to 40 for some picture called "school" ?? , plz i need full code for doing that

回答(3 个)

Iain
Iain 2013-6-21
If you mean pixel levels in that range:
school(school > 100 & school < 190) = 40;

Walter Roberson
Walter Roberson 2013-6-21
编辑:Walter Roberson 2013-6-21
school = imread('school.tif');
school(school > 100 & school < 190) = 40;
imshow(school)

Image Analyst
Image Analyst 2014-6-24
Try
school(school >= 100 & school <= 190) = 40;
Same as the others had but since 100 and 190 are in the range I used the = sign whereas the others didn't so pixels with values of 100 and 190 will not get set to 40 in their answers.

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by