From 6c77764bba66f02d21116b9cca94a0e77749bc3c Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sat, 15 Jun 2019 14:05:19 +0200 Subject: [PATCH] updates --- detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detect.py b/detect.py index 9106bc84..5defda55 100644 --- a/detect.py +++ b/detect.py @@ -28,7 +28,7 @@ def detect( # Initialize model if ONNX_EXPORT: - s = (320, 192) # (320, 192) or (416, 256) onnx model image size (height, width) + s = (320, 192) # (320, 192) or (416, 256) or (608, 352) onnx model image size (height, width) model = Darknet(cfg, s) else: model = Darknet(cfg, img_size)