how to do binary conversion of an image?

1 次查看(过去 30 天)
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 中查找有关 Data Type Conversion 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by