Transmitting a compressed image
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Walter Roberson
2015-10-17
de2bi(X) or dec2bin(X)-'0'
6 个评论
Walter Roberson
2015-10-21
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 OFDM 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!