Image to binary conversion

9 views (last 30 days)
Hi,I would like to convert each pixel value of an image to one byte. how do i do it. I tried
for i=1:a
for j=1:b
k(i,j)=dec2bin(image(i,j));
end;
end;
where a and b are size of the image. But there comes size mismatch error. Please help me to correct it.

Accepted Answer

Chandra Kurniawan
Chandra Kurniawan on 11 Mar 2012
for i = 1 : a
for j = 1 : b
k{i,j} = dec2bin(image(i,j));
end
end
please use cell-array to store strings, not array.
  2 Comments
Nandhini Rajkumar
Nandhini Rajkumar on 11 Mar 2012
Thank you so much. it worked.
maryam zaman
maryam zaman on 27 Apr 2013
How we can convert each pixel value of image in binary?

Sign in to comment.

More Answers (0)

Categories

Find more on Convert Image Type in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!