05-04-2013 10:35 AM
Hi,
I am doing a research on OFDM transceiver and initially I am planning to transmit a Picture message and receive it at far end. For this I need IMAQ Vis and since I am suing LabVIEW 2012 student version, I have no access to these vis. Can someone give me a clue how I convert JPEG image data to a output bit stream..(eg: seed in of a MT Generate bits vi)
Regards,
Ranjan
05-04-2013 01:58 PM
What format do expect this bit stream to be in? The easiest thing is simply to read the data from the file using the generic file read function and that will simply return an array of bytes (essentially a byte stream) represented as a string. You can then use String to Byte Array to convert it to a 1D U8 array. You might also be able to use the type input on the file read primitive to output the U8 array directly, but I never played too much with that, so I'm not sure what the specific details are.
05-05-2013 08:25 PM
Hi Thanks I'll try this and let you know..