김성주

fixed minor code

...@@ -122,6 +122,10 @@ ...@@ -122,6 +122,10 @@
122 ### 결과 예시 122 ### 결과 예시
123 --- 123 ---
124 124
125 +code/yolov3/test_single_image.py로 생성된 이미지입니다.
126 +
127 +비디오 인식은 같은 디렉토리의 video_test.py를 참고하시기 바랍니다.
128 +
125 ![dog1](/uploads/86f16320572b43a68055e48fc897e114/dog1.png) 129 ![dog1](/uploads/86f16320572b43a68055e48fc897e114/dog1.png)
126 130
127 예시 1 131 예시 1
......
...@@ -13,7 +13,7 @@ from data_utils import letterbox_resize ...@@ -13,7 +13,7 @@ from data_utils import letterbox_resize
13 from model import yolov3 13 from model import yolov3
14 14
15 parser = argparse.ArgumentParser(description="YOLO-V3 test single image test procedure.") 15 parser = argparse.ArgumentParser(description="YOLO-V3 test single image test procedure.")
16 -parser.add_argument("input_image", type=str, 16 +parser.add_argument("--input_image", type=str,
17 help="The path of the input image.") 17 help="The path of the input image.")
18 parser.add_argument("--anchor_path", type=str, default="../../data/yolo_anchors.txt", 18 parser.add_argument("--anchor_path", type=str, default="../../data/yolo_anchors.txt",
19 help="The path of the anchor txt file.") 19 help="The path of the anchor txt file.")
......