vote up 1 vote down star
1

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

flag

80% accept rate

6 Answers

vote up 1 vote down

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|flag
Do you know any multiplatform solution similar to this? Thanks! – Álvaro Aug 6 at 13:21
vote up 1 vote down

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

link|flag
vote up 1 vote down

Google "Memory Mapped Files"

link|flag
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. – Álvaro Apr 15 at 12:00
Memory-mapped IO is a form of IPC. – rascher Apr 18 at 17:46
vote up 1 vote down

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|flag
Evolutivity ftw! – unwind Apr 15 at 11:30
what is ftw? (I can imagine F*ck The Word, but I'm not native english...) – Álvaro Apr 15 at 11:52
(haha, ftw = "for the win") – rascher Apr 18 at 17:45
I'm ashamed! :| Thanks! :) – Álvaro Apr 19 at 13:09
vote up 1 vote down

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

link|flag
vote up 2 vote down

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

link|flag

Your Answer

Get an OpenID
or

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