From 366c31259f75f9bf5cc7f33cec0493990b22e89d Mon Sep 17 00:00:00 2001 From: KtAlumi Date: Sun, 23 Apr 2023 10:38:58 +0800 Subject: [PATCH] Edit dsize order (#6172) dsize could be (width, height). Co-authored-by: kt.lu --- frigate/video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/video.py b/frigate/video.py index a64809f45..a3356a586 100755 --- a/frigate/video.py +++ b/frigate/video.py @@ -104,7 +104,7 @@ def create_tensor_input(frame, model_config, region): if cropped_frame.shape != (model_config.height, model_config.width, 3): cropped_frame = cv2.resize( cropped_frame, - dsize=(model_config.height, model_config.width), + dsize=(model_config.width, model_config.height), interpolation=cv2.INTER_LINEAR, )