Reputation: 615
I am trying to add a real time overlay to video capture from the camera feed. Which api should I use and how?
Idea is below,
Upvotes: 1
Views: 943
Reputation: 25471
OpenCV (https://opencv.org) will allow you take your video feed, and frame by frame:
Depending on the amount of processing you need to do, the platform or device you are running on and whether you need it in real time you may find it hard to complete this every frame for high frame rates. One solution to this, if it is ok for your problem domain, is to only do the processing very nth frame.
Upvotes: 1
Reputation: 343
I have used something similar with the GraphicOverlay for text.
Also, ViewOverlay may be something to look into.
Upvotes: 0