mirror of
https://github.com/hacksider/Deep-Live-Cam.git
synced 2026-05-14 18:58:03 +02:00
e957a7f4dd
The processing thread was running cvtColor on the full-resolution 1920×1080 frame before queueing it for display. Since the display thread immediately resizes the frame to the preview window (~5× smaller pixel count), doing the colour conversion on the resized buffer is cheaper overall. Processing thread now queues BGR; display thread resizes then cvtColor.