up vote 1 down vote favorite
1
share [g+] share [fb]

Assuming that I have to copy each image on the stream (I cannnot simply access that data with any mutex protection, it must be copied anyway), which method is better, pros/cons?

I would like to know also how much performance loss this implied compared to using the images in the same process.

Thanks

link|improve this question

feedback

6 Answers

For images, IPC through shared memory would be the best option.

link|improve this answer
feedback

At least Windows' firewalls can interfere even with local TCP/IP connections. Therefore I would prefer shared memory.

link|improve this answer
feedback

In term of performance, IPC through shared memory is the best option but IMHO, even if sockets consume a little more processing, they will give you a better result in term of evolutivity of your software.

link|improve this answer
Evolutivity ftw! – unwind Apr 15 '09 at 11:30
what is ftw? (I can imagine F*ck The Word, but I'm not native english...) – alvatar Apr 15 '09 at 11:52
(haha, ftw = "for the win") – poundifdef Apr 18 '09 at 17:45
I'm ashamed! :| Thanks! :) – alvatar Apr 19 '09 at 13:09
feedback

Google "Memory Mapped Files"

link|improve this answer
I'm reading about it, but I can't figure out how well does the I/O of a memory mapped file perform, compared to IPC. – alvatar Apr 15 '09 at 12:00
Memory-mapped IO is a form of IPC. – poundifdef Apr 18 '09 at 17:46
feedback

This might shed some light on different IPC methods: http://www.ecst.csuchico.edu/~beej/guide/ipc/

link|improve this answer
feedback

I would take the VCAM example of a DirectShow capture device (available at: http://tmhare.mvps.org/downloads/vcam.zip)

This driver appears to the O/S as a video capture device and would run in the destination process. The source would use shared memory buffers to feed it frames to inject.

While more complicated than a minimal shared-memory IPC scheme, it gives an incredible advantage in that your video pipes can connect to most media player programs, capture and editing tools, etc.

I have done this several times, including features like sinks, mixers, Freeframe effect plugins, and so on. It should take a day or two to hack together.

link|improve this answer
Do you know any multiplatform solution similar to this? Thanks! – alvatar Aug 6 '09 at 13:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.