how to do binary conversion of an image?

조회 수: 1 (최근 30일)
sana saleeme
sana saleeme 2016년 1월 7일
댓글: Walter Roberson 2016년 1월 8일
how to do binary conversion of an image?
  댓글 수: 4
hemalatha
hemalatha 2016년 1월 8일
편집: hemalatha 2016년 1월 8일
read the image into an array,that array consists of pixels a=imread("give your imagepath"); now convert the array of pixels into binary by using the inbuilt function dec2bin, binaryvalues=dec2bin(a); now you get the binary values in single column
Walter Roberson
Walter Roberson 2016년 1월 8일
hemalatha, that is not quite correct. You need
binaryvalues = reshape( (dec2bin(a, 8)-'0').', [], 1);
to get the binary values in a single column (presuming that the image was uint8 data type.)

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

답변 (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