feat: lower frame queue max size

This commit is contained in:
Prohurtz 2024-07-30 15:46:59 -05:00
parent aa0b0903fc
commit c2e7281b76

View File

@ -189,7 +189,7 @@ class EyeProcessor:
axis=1,
)
self.image_queue_outgoing.put((image_stack, output_information))
if self.image_queue_outgoing.qsize() > 3:
if self.image_queue_outgoing.qsize() > 1:
self.image_queue_outgoing.get()
self.previous_image = self.current_image