Making some intensity values of image to zero

5 次查看(过去 30 天)
hi..
How to zero the unwanted pixel intensity values of a image to zero.

采纳的回答

Stephen
Stephen 2012-5-24
if your image is 'a', try
a(a>threshold)=0;
or try
max(a,threshold);
which makes the values equal to your threshold. maybe it is useful
  1 个评论
Walter Roberson
Walter Roberson 2012-5-24
The reverse, values less than the threshold are the ones to be set to 0 apparently.

请先登录,再进行评论。

更多回答(1 个)

Walter Roberson
Walter Roberson 2012-5-23
... Assign 0 to those matrix locations ?
Is there more to this question, such as automatically determining which pixels have "unwanted pixel intensity values" ?
  1 个评论
Gova ReDDy
Gova ReDDy 2012-5-24
Yeah,I'm planning to give some threshold like pixel intensity values less than 30 should be equal to zero in the image.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by