how to convert an image into bits???

32 visualizaciones (últimos 30 días)
user06
user06 el 24 de Feb. de 2015
Respondida: Walter Roberson el 18 de En. de 2022
how we can convert an image into bits ?? and that bits back to image?
  2 comentarios
Star Strider
Star Strider el 24 de Feb. de 2015
A relatively simple solution (since what you want is quite definitely not obvious) is to scan it, then print the scanned image.
user06
user06 el 25 de Feb. de 2015
actually i want to insert the image bits into different image. so i need to convert the image into binary bits..

Iniciar sesión para comentar.

Respuestas (5)

Shoaibur Rahman
Shoaibur Rahman el 24 de Feb. de 2015
It is not clear to me exactly what is your goal? Are you trying to convert image pixels into binary bits? If so, you can use dec2bin for that, and bin2dec to get your image back.
I_in = your image...
% encoding image into array of bits
B = dec2bin(I_in);
C = reshape(B',1,numel(B)); % converted into bits
% decoding image from bits
D = reshape(C,size(B,2),size(B,1));
I_out = reshape(bin2dec(D'),size(I_in))
  16 comentarios
dung nguyen
dung nguyen el 25 de Nov. de 2021
@Walter Roberson the image has a size of 1920x2560 , i want to convert the image into bit , How can i do , thanks you
Walter Roberson
Walter Roberson el 25 de Nov. de 2021
https://www.mathworks.com/matlabcentral/answers/180075-how-to-convert-an-image-into-bits#answer_169133 shows how.

Iniciar sesión para comentar.


Image Analyst
Image Analyst el 24 de Feb. de 2015
It's already in bits, as are all numbers in computers.
  7 comentarios
user06
user06 el 26 de Feb. de 2015
actually i m working on watermarking.and i need to process each and every pixel of image. and according to the pixel value (whether 0 or 1) i need to take appropriate action.
Image Analyst
Image Analyst el 30 de Jun. de 2021
"actually i m working on watermarking"
See my atttached demo on Least significant bit watermarking.

Iniciar sesión para comentar.


Image Analyst
Image Analyst el 25 de Nov. de 2021
If you want to view bitplanes 0 through 7, as binary images, see my attached demo.

Andy Paulo Ureña
Andy Paulo Ureña el 18 de En. de 2022
Hello there! I hope you can help me with this question... I'm simulating a Digital Comm System, so i want to transmit an image and for that i converted that image into a bitstream, i used "imbinarize" function and reshape the matrix into a row vector for the "transmission" which function should i use to make the opposite process for the recosntruction of the image? Thanks!

Walter Roberson
Walter Roberson el 18 de En. de 2022
reshape() to reconstruct the image. The remote side will need to know the image size, so either the size will need to be fixed or else you will need to transmit size information.
Note that your process will end up with a black and white image. If you want grey or color then you will need to use something different than imbinarize

Community Treasure Hunt

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

Start Hunting!

Translated by