diff --git a/yolo_opencv.py b/yolo_opencv.py index 5932e24..0c92c94 100644 --- a/yolo_opencv.py +++ b/yolo_opencv.py @@ -8,7 +8,7 @@ import cv2 import argparse import numpy as np - +print('start') ap = argparse.ArgumentParser() ap.add_argument('-i', '--image', required=True, help = 'path to input image') @@ -102,3 +102,4 @@ def draw_prediction(img, class_id, confidence, x, y, x_plus_w, y_plus_h): cv2.imwrite("object-detection.jpg", image) cv2.destroyAllWindows() +print('Done')