I have question about very high latency streaming method which I need to apply. I need to do such thing:
- Stream video frame by frame from MachineA (can be computer or
embedded device) to PowerfulServer. - Process each frame using OpenCV algorithm on PowerfulServer.
- 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?