Andreas Bachmann

Results 5 comments of Andreas Bachmann

I checked the RAM usage from both `PixelFormat`s. ### RGB8 Only uses `frame.get_buffer()` It just allocates once a buffer: ![RAM Usage BayerRG8](https://raw.githubusercontent.com/te-bachi/QDToolsPythonIssues/main/python_ram_usage_rgb8.png) ### BayerRG8 Uses `frame.convert_pixel_format(PixelFormat.Rgb8)` before `frame.get_buffer()` It increases...

Ah, there is a new version of Vimba SDK. I downloaded it long time ago on 07.10.2021, so it was Vimba SDK 5.0. I'll check the newest version Vimba SDK...

Ok, same in Vimba SDK 6.0, faulty on 6th frame, crash of FrameHandler on 13th frame, Python application continues to run normaly, no error or exception: ![RAM usage for Vimba...

Thank you very much! The `Frame` and the corresponding buffer is managed by Vimba SDK. I also tried this code before, but it crashed immediately in the Qt `slot `when...

With 18 fps the workaround with `copy.deepcopy(frame)` doesn't help much. Memory allocation goes from 300MB to 5GB and back very fast and struggles/freezes when the `gc` is active. ![RAM usage...