suggest me suitable title for the following matlab code?

1 回表示 (過去 30 日間)
somasekar jalari
somasekar jalari 2015 年 2 月 25 日
回答済み: Image Analyst 2015 年 2 月 26 日
Suggest me suitable title for the following matlab code? here i am reading gray scale image and if the the intensity values more than 190 then initialized such pixel values as 140.
I=imread('image1.jpg'); % read gray scale image
[x,y]=size(I);
for i=1:x
for j=1:y
if (I(i,j)>190)
I(i,j)=140;
end
end
end
thanks in advance.
  1 件のコメント
per isakson
per isakson 2015 年 2 月 26 日
The double loop can be replaced by
I(I>190)=140;

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2015 年 2 月 26 日
I'd probably call the function Threshold190() or Threshold140() or ThresholdImage() or something like that.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeRead, Write, and Modify Image についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by