06-21-2009 04:05 AM
Hi ALL,
I think I have a similar problem, I need to send the .bz file into unit via tcp/ip, can anyone knows how to deo it.
thanks in advance,
BR,
toberts
06-21-2009 08:45 AM
What is a ".bz" file? Into what unit are you talking about?
Please provide more information.
06-22-2009 10:24 AM
10-13-2009 02:58 AM
Hii..
I have developed a client-server model for image processing application. I used shared variables for sending images from client to server and vice versa. First, I converted the image into 1D array and then transferred using shared variables. When I operate my server from client on internet, it was very slow because it is a long array of 160*160 elements (each is Uint32).
I have seen andrey's Example. In this, the image is simply transferred by flattening and unflattening.
Which one is more efficient in terms of speed.
Thanks
Prashanth
10-13-2009 03:38 AM
Hi, prashiit,
don't use Shared Variables if you need high transfer, because you will get overhead caused by internal Shared Variables tcp protocol.
Andrey.