From 1ecf80bc28bbb80c286134f7f4dac93770570f5e Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Fri, 13 Sep 2019 16:29:06 +0200 Subject: [PATCH] updates --- utils/datasets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/datasets.py b/utils/datasets.py index 0ceae059..6c94b375 100755 --- a/utils/datasets.py +++ b/utils/datasets.py @@ -228,7 +228,7 @@ class LoadStreams: # multiple IP or RTSP cameras raise StopIteration # Letterbox - img = [letterbox(x, new_shape=self.img_size, mode='square')[0] for x in img0] + img = [letterbox(x, new_shape=self.img_size)[0] for x in img0] # Stack img = np.stack(img, 0)