Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ The log, model checkpoints, optimizer states will be saved to the `exp` director

- [Yikun Ji (Kunologist)](https://github.com/Gennadiyev)
- [Qi Fan (fanqiNO1)](https://github.com/fanqiNO1)
- [Xiangyun Rao (xyrrrrrrrr)](https://github.com/xyrrrrrrrr)

## Contributing

Expand Down
Binary file added tests/data/rxy.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions unipose/yolo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Yolo_unipose

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested changes, see #6

Copy link
Copy Markdown
Collaborator Author

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.


+ 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)
8 changes: 8 additions & 0 deletions unipose/yolo/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
"""Implements UniPose model.

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change to YOLO-related implementation.

Wait I don't think you implemented UniPose model in this file...

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The 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"]

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add newline \n to end of file.

653 changes: 653 additions & 0 deletions unipose/yolo/export.py

Large diffs are not rendered by default.

Empty file added unipose/yolo/models/__init__.py
Empty file.
Loading