김성주

fixed minor code

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