diff --git a/frigate/output.py b/frigate/output.py index b0ee49c0e..927833cb1 100644 --- a/frigate/output.py +++ b/frigate/output.py @@ -433,10 +433,12 @@ class BirdsEyeFrameManager: coefficient, ) - if total_height <= canvas_height: + if (canvas_height * 0.9) < total_height <= canvas_height: break - - coefficient -= 0.1 + elif total_height < canvas_height * 0.8: + coefficient += 0.1 + else: + coefficient -= 0.1 self.camera_layout = layout_candidate