필터 지우기
필터 지우기

Convert input image to binary

조회 수: 1 (최근 30일)
Emily Boylan
Emily Boylan 2018년 10월 18일
편집: Emily Boylan 2018년 10월 19일
How would I manually convert an image to binary by setting all values less than 100 equal to 1 and all else equal to 0?
  댓글 수: 1
Chad Greene
Chad Greene 2018년 10월 18일
What exactly is your question?

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

채택된 답변

Image Analyst
Image Analyst 2018년 10월 18일
Try this
[rows, columns, numColorChannels] = size(a);
if numColorChannels > 1
% Convert color image to grayscale.
a = rgb2gray(a);
end
binaryImage = a < 100;
imshow(binaryImage);
If you need more help, attach circlesBrightDark.png.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by