diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md index 0463a376d1a4f3ef011d1384c530637e82c2657b..8881b3c85d35e35426ca2306d6f84aea3ab75ef2 100644 --- a/GETTING_STARTED.md +++ b/GETTING_STARTED.md @@ -77,7 +77,7 @@ show_result(img, result, model.CLASSES) # test a list of images and write the results to image files imgs = ['test1.jpg', 'test2.jpg'] -for i, result in enumerate(inference_detector(model, imgs): +for i, result in enumerate(inference_detector(model, imgs)): show_result(imgs[i], result, model.CLASSES, out_file='result_{}.jpg'.format(i)) ```