There are C ++ clients that stream frames from webcams to an HTTP server. Some cameras give flipped frames, and you need to programmatically analyze and flip the frame if it is flipped.
I know that this can be realized with the help of OpenCV, but the client is already quite loaded with both camera capture (vfw32) and network exchange and other bells and whistles, so it’s not very likely to be loaded with additional analysis, because most users are far from the most powerful machines.
Is it possible to perform such an analysis using GD tools in PHP?
