How will I convert a image into binary image?

조회 수: 32 (최근 30일)
abhishek  nandi
abhishek nandi 2016년 4월 9일
댓글: manoj kumar Yadav 2023년 3월 1일
How will I convert a image into binary image?
I = imread('D:\25.jpg');
>> BW = imbinarize(I)
??? Undefined function or method 'imbinarize' for input arguments of type 'uint8'.

채택된 답변

Kuifeng
Kuifeng 2016년 4월 9일
  댓글 수: 3
Walter Roberson
Walter Roberson 2016년 4월 9일
I = imread('D:\25.jpg');
BW = im2bw(I, 0.4);
manoj kumar Yadav
manoj kumar Yadav 2023년 3월 1일
whta is the 0.4

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by