-
-
Notifications
You must be signed in to change notification settings - Fork 1
Add YOLOv5 integration #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
bfbd320
c6bd0d9
5097a86
81f42a7
e9294c2
4ac59ad
21c979d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| # Yolo_unipose | ||
|
|
||
| + main contributor: [Xiangyun Rao](https://github.com/xyrrrrrrrr) | ||
|
|
||
| ## Intro | ||
|
|
||
| Yolo_unipose is a pre-processing tool for the [Unipose](https://github.com/Gennadiyev/unipose), which is based on the [YOLOv5](https://github.com/ultralytics/yolov5). It is used to get the main creature in the image, judge its kind, and then return the bounding box of the creature. | ||
|
|
||
| ## How to use | ||
|
|
||
| If you want to see how it works, you can run the `yolo_unipose.py` file directly. The default image is `rxy.jpg`. You can also change the image path in the code or in the command line. | ||
|
|
||
| ```bash | ||
| python yolo_unipose.py --source your_image_path | ||
| ``` | ||
|
|
||
| ## Reference | ||
|
|
||
| + [YOLOv5](https://github.com/ultralytics/yolov5) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| """Implements UniPose model. | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Change to
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see. |
||
| @author: Xiangyun Rao | ||
| """ | ||
|
|
||
| from .yolo_unipose import yolo_unipose | ||
|
|
||
|
|
||
| __all__ = ["yolo_unipose"] | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add newline |
||
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggested changes, see #6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see. And I will improved code quality in my future work.