Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hairymax/pose-estimation
YOLOv7 for pose estimation
https://github.com/hairymax/pose-estimation
Last synced: about 4 hours ago
JSON representation
YOLOv7 for pose estimation
- Host: GitHub
- URL: https://github.com/hairymax/pose-estimation
- Owner: hairymax
- Created: 2023-03-22T08:01:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-10T15:01:01.000Z (11 months ago)
- Last Synced: 2023-12-10T16:23:14.155Z (11 months ago)
- Language: Jupyter Notebook
- Size: 4.68 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pose-estimation
YOLOv7 для детекций скелета человекаКод был написан до выхода YOLOv8. С ней детекция скелетов получается проще. Этот репозиторий был создан для того, чтобы сохранить написанный скрипт, ну и вдруг кому будет полезен
Статья на Хабр [YOLOv7 для определения поз людей на видео](https://habr.com/ru/articles/725296/)https://user-images.githubusercontent.com/6792913/227441262-78d85795-e8ca-467d-8ce9-f346adcd1976.mp4
Для работы с кодом этого репозитория необходимо сначала склонировать себе код [репозитория `yolov7`](https://github.com/WongKinYiu/yolov7)
```sh
git clone https://github.com/WongKinYiu/yolov7.git
```Перейти в директорию репозитория и установить неибходимые библиотеки из [requirements.txt](https://github.com/WongKinYiu/yolov7/blob/main/requirements.txt)
```
cd yolov7
pip install -r requirements.txt
```Для обработки видео необходимо запустить скрипт video_pose из директории репозитория командой
```sh
python video_pose.py -i path/to/original_video.mp4 -o path/to/processed_video.mp4
```