Info

此问题已关闭。 请重新打开它进行编辑或回答。

How can i do the threshold of an image ?

1 次查看(过去 30 天)
ting
ting 2013-11-27
关闭: MATLAB Answer Bot 2021-8-20
  • The above image of size 8*8 is my original image
  • The second one reconstructs from idct, i.e (idct2 is used here)
I think i need to do threshold-ing. If i set T=10, If I<10, i want to set them to be zero and only keep those intensities >=10
Results==idct2(X_dq);
T=10;
Ouput=Results>=10;
But i got this result, However, i want to keep my second row instead of all ones. I don't want a binary image.
What can i change ?? Thank you

回答(1 个)

Image Analyst
Image Analyst 2013-11-27
T = 10;
binaryImage = Results > T;
% Get new X with zeros where it's less than 10:
X(~binaryImage) = 0;
  2 个评论
ting
ting 2013-11-28
I want to threshold those I<10 but keep this row how can i do that? Thank you
Image Analyst
Image Analyst 2013-11-28
编辑:Image Analyst 2013-11-28
What is the name of that array, is it I? If so, then do:
I(I<10)=0;

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by