Transmitting a compressed image
Mostra commenti meno recenti
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?
Risposte (1)
Walter Roberson
il 17 Ott 2015
0 voti
de2bi(X) or dec2bin(X)-'0'
6 Commenti
Hana Elenany
il 17 Ott 2015
Walter Roberson
il 17 Ott 2015
And your data is represented as... ? Quadruple Precision Quaterions in Snake Notation?
Hana Elenany
il 18 Ott 2015
Walter Roberson
il 19 Ott 2015
Once you have the result of float2bin() what do you do with it?
Hana Elenany
il 20 Ott 2015
Walter Roberson
il 21 Ott 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.
Categorie
Scopri di più su OFDM in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!