Best way to vary the threshold value of a greyscale image

4 ビュー (過去 30 日間)
Adam Kelly
Adam Kelly 2019 年 11 月 7 日
編集済み: KALYAN ACHARJYA 2019 年 11 月 8 日
I have a question to vary the threshold value of a greyscale image. I was thinking of using a for loop so I can vary values from 0.1 to 1 but not sure how to start the loop. Any help would be great
  1 件のコメント
darova
darova 2019 年 11 月 8 日
Can you present your attempts/efforts?

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

回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 11 月 8 日
編集済み: KALYAN ACHARJYA 2019 年 11 月 8 日
Let say im is the gray image, assumed you are try to convert gray to binary
% Define all threshold values here, you would like to attempt
th_values=[ ?, ?,...........];
data=cell(1,length(th_values))
for i=1:length(th_values);
data{i}=im2bw(im,th(i));
end
Later call any data{1},data{2},.....compare the results

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by