How can i create preferably dynamic overlays using Dispmanx in Python on a Raspberry Pi (3B)?
My goal is to overlay custom images containing current information on top of a Picamera Preview. The Picamera module provides a similar functionality, which i got to work in low resolution with only 4 fps (low fps due to constantly adding and removing 2 overlays and alternately hiding them below the layer of the Picamera preview)
I am aware of C programs (AndrewFromMelbourne on Github) which use Dispmanx do generate these overlays very fast.
A Python implementation of overlays in pi3d module does not work with transparency.
Bind pygame surface to dispmanx element
In the question quoted above, the user managed to create dispmanx elements via python, I would like to know how to do exactly this. Thank you.