Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
PET_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김성주
2020-06-21 19:22:05 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
48a81a584b30b7fe57e035d3612c34fddb561b57
48a81a58
1 parent
38548e6a
fixed minor code
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
ReadMe.md
code/pb/pbCreator.py
ReadMe.md
View file @
48a81a5
...
...
@@ -122,6 +122,10 @@
### 결과 예시
---
code/yolov3/test_single_image.py로 생성된 이미지입니다.
비디오 인식은 같은 디렉토리의 video_test.py를 참고하시기 바랍니다.
![
dog1
](
/uploads/86f16320572b43a68055e48fc897e114/dog1.png
)
예시 1
...
...
code/pb/pbCreator.py
View file @
48a81a5
...
...
@@ -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."
)
...
...
Please
register
or
login
to post a comment