bnd762
bnd762
I solved a similar problem using Pygame. This actually works quite well. https://github.com/raspberrypi/picamera2/issues/607#issuecomment-1730933656
Here is the process "camera" from my project showing a preview window and capturing. I would like to create the same with Picamera2, but without CV2 and QT, only with...
I could pick up the individual images via Mapped Array and display them in Tkinter to simulate a preview. But that's slow
There must be a way to do this in Python/Tkinter without QT and CV2. It can't be that it doesn't work.
I have now solved the problem with pygame and it works wonderfully. I use multiprocessing. Pygame runs in a separate process and is only used for the camera. The GUI...