I'm working on a real-time video processing application, and I need as little latency as possible. I'm suspicious that the standard namedWindow and waitKey solution is adding delay, and anyway it is a bit superfluous because my application will be run on a system with no keyboard. It also seems to take a lot of CPU power to display, which I would like to cut down if possible.
So is there a faster/less CPU-intensive way to display my video feed? Something like DirectX, but on Linux?
Thanks.