Converting from grayscale to binary image gives error

1 回表示 (過去 30 日間)
engineer
engineer 2018 年 8 月 13 日
編集済み: jonas 2018 年 8 月 13 日
Hi everybody I convert my image from grayscale to binary image, however, the result is completely black. I attached my code and images. Could you please help me with that?
if true
grayImage=imread('20x.png');
binaryImage = im2bw(grayImage,0.4);
binaryImage = imfill(binaryImage, 'holes');
imshow(binaryImage, []);
end

採用された回答

jonas
jonas 2018 年 8 月 13 日
編集済み: jonas 2018 年 8 月 13 日
The threshold (0.4) is too high. Reduce the threshold (to e.g. 0.2) or use imbinarize instead of im2bw (recommended).

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by