This commit is contained in:
Glenn Jocher 2019-09-19 18:54:16 +02:00
parent b5db03827f
commit fdfc4a5e63
1 changed files with 3 additions and 2 deletions

View File

@ -6,9 +6,9 @@ from utils.datasets import *
from utils.utils import *
def detect(save_txt=False, save_img=False, view_img=False):
def detect(save_txt=False, save_img=False):
img_size = (320, 192) if ONNX_EXPORT else opt.img_size # (320, 192) or (416, 256) or (608, 352) for (height, width)
out, source, weights, half = opt.output, opt.source, opt.weights, opt.half
out, source, weights, half, view_img = opt.output, opt.source, opt.weights, opt.half, opt.view_img
webcam = source == '0' or source.startswith('rtsp') or source.startswith('http') or source.endswith('.txt')
# Initialize
@ -139,6 +139,7 @@ if __name__ == '__main__':
parser.add_argument('--fourcc', type=str, default='mp4v', help='output video codec (verify ffmpeg support)')
parser.add_argument('--half', action='store_true', help='half precision FP16 inference')
parser.add_argument('--device', default='', help='device id (i.e. 0 or 0,1) or cpu')
parser.add_argument('--view-img', action='store_true', help='display results')
opt = parser.parse_args()
print(opt)