Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have question about very high latency streaming method which I need to apply. I need to do such thing:

  1. Stream video frame by frame from MachineA (can be computer or
    embedded device) to PowerfulServer.
  2. Process each frame using OpenCV algorithm on PowerfulServer.
  3. Send results of OpenCV work (only small coordinates - few number parameters) from PowerfulServer to MachineA.

Problem which I have is that everything should be in real-time so I need to have low latency to be possible receive results from PowerfulServer before stream another video frame. Could you help me what technologies I should use for it? And how to implement it? I am trying gstreamer with MJPEG streaming (I read it is allows low latency streaming). Is it good idea?

share|improve this question

closed as not a real question by Klaus Byskov Pedersen, Robert Harvey Oct 4 '12 at 17:40

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.