This commit is contained in:
Glenn Jocher 2020-01-02 09:50:11 -08:00
parent 77850a2198
commit 23288236a6
1 changed files with 3 additions and 2 deletions

View File

@ -6,9 +6,9 @@ from utils.datasets import *
from utils.utils import * from utils.utils import *
def detect(save_txt=False, save_img=False): def detect(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) 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, view_img = opt.output, opt.source, opt.weights, opt.half, opt.view_img out, source, weights, half, view_img, save_txt = opt.output, opt.source, opt.weights, opt.half, opt.view_img, opt.save_txt
webcam = source == '0' or source.startswith('rtsp') or source.startswith('http') or source.endswith('.txt') webcam = source == '0' or source.startswith('rtsp') or source.startswith('http') or source.endswith('.txt')
# Initialize # Initialize
@ -167,6 +167,7 @@ if __name__ == '__main__':
parser.add_argument('--half', action='store_true', help='half precision FP16 inference') 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('--device', default='', help='device id (i.e. 0 or 0,1) or cpu')
parser.add_argument('--view-img', action='store_true', help='display results') parser.add_argument('--view-img', action='store_true', help='display results')
parser.add_argument('--save-txt', action='store_true', help='display results')
parser.add_argument('--classes', nargs='+', type=int, help='filter by class') parser.add_argument('--classes', nargs='+', type=int, help='filter by class')
opt = parser.parse_args() opt = parser.parse_args()
print(opt) print(opt)