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