Transmitting a compressed image
1 view (last 30 days)
Show older comments
I have used a wavelet-based compression technique for compressing an image. The code is working successfully and three images are displayed: original, compressed and decompressed. I want to transmit the compressed image over wireless OFDM channel. For this purpose, the compressed image must be converted to ones and zeros. How can I do this?
0 Comments
Answers (1)
Walter Roberson
on 17 Oct 2015
de2bi(X) or dec2bin(X)-'0'
6 Comments
Walter Roberson
on 21 Oct 2015
MATLAB has no "bit" datatype so there is no way in MATLAB to index individual bits in an array. Therefore when data is converted to bit vector, it is necessary to represent each bit as a storage element, potentially uint8 (one byte per bit represented) or char (two bytes per bit represented, but prints out more nicely) or double (8 bytes per bit represented). With any of these methods, there is only one bit of useful information represented per storage element.
When you go to do the transmission in OFDM, you need to arrange so that only the "useful" portion of the representation is transmitted. The method of doing that is going to depend upon how your OFDM routine expects the inputs that it translates to waveforms (or whatever it is that comes out the other side of an OFDM encoding.) And as we do not know what OFDM encoding code you are using, we can only give general advice on what you need to do.
See Also
Categories
Find more on OFDM 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!