imbinarize function do not work im2bw also does not work
4 ビュー (過去 30 日間)
古いコメントを表示
ı am trying to get an image in the binary form but the funtions for it doesn't work.
ı tried both imbinarize and im2bw.
I = imread('a.png');
BW = im2bw(I, 0.4);
figure
imshow(I)
0 件のコメント
回答 (1 件)
KALYAN ACHARJYA
2019 年 11 月 30 日
編集済み: KALYAN ACHARJYA
2019 年 11 月 30 日
I = rgb2gray(imread('a.png'));
BW = im2bw(I, 0.4);
8 件のコメント
Zarwish Javaid
2021 年 1 月 20 日
how to install image processing toolbox?
and how to remove errors shown in below image?

参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!