forked from MVIG-SJTU/AlphaPose
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
61aa99a
commit 0ad7db0
Showing
18 changed files
with
29 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,34 @@ | ||
# Pose Tracking | ||
## Models | ||
# Pose Tracking Module for AlphaPose | ||
|
||
|
||
## Human-ReID based tracking (Recommended) | ||
Currently the best performance tracking model. Paper coming soon. | ||
|
||
### Getting started | ||
Download [human reid model](https://mega.nz/#!YTZFnSJY!wlbo_5oa2TpDAGyWCTKTX1hh4d6DvJhh_RUA2z6i_so) and place it into `./trackers/weights/`. | ||
|
||
Then simply run alphapose with additional flag `--pose_track` | ||
|
||
You can try different person reid model by modifing `cfg.arch` and `cfg.loadmodel` in `./trackers/tracker_cfg.py`. | ||
|
||
If you want to train your own reid model, please refer to this [project](https://github.com/KaiyangZhou/deep-person-reid) | ||
## Demo | ||
|
||
### Demo | ||
``` bash | ||
./scripts/inference.sh ${CONFIG} ${CHECKPOINT} ${VIDEO_NAME} ${OUTPUT_DIR}, --pose_track | ||
``` | ||
## Todo | ||
### Todo | ||
- [] Evaluation Tools for PoseTrack | ||
- [] More Models | ||
- [] Training code for [PoseTrack Dataset](https://posetrack.net/) | ||
|
||
|
||
## PoseFlow human tracking | ||
This tracker is based on our BMVC 2018 paper PoseFlow. | ||
|
||
### Getting started | ||
|
||
Simply run alphapose with additional flag `--pose_flow` | ||
|
||
### More info | ||
For more info, please refer to [PoseFlow/README.md](PoseFlow/) |