Skip to content

Commit

Permalink
modify grew info
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Mar 30, 2022
1 parent 5590d83 commit 7f3964a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .idea/deployment.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Gait3D-Benchmark
This is the code for the paper "Jinkai Zheng, Xinchen Liu, Wu Liu, Lingxiao He, Chenggang Yan, Tao Mei: [Gait Recognition in the Wild with Dense 3D Representations and A Benchmark](https://gait3d.github.io). (CVPR 2022)"
This is the code for the paper "Jinkai Zheng, Xinchen Liu, Wu Liu, Lingxiao He, Chenggang Yan, Tao Mei: [Gait Recognition in the Wild with Dense 3D Representations and A Benchmark](https://gait3d.github.io). (CVPR 2022)". The official project page is [here](https://gait3d.github.io/).


## What's New
Expand Down Expand Up @@ -92,7 +92,7 @@ pip install tqdm pyyaml tensorboard opencv-python tqdm py7zr tabulate termcolor


## Data Preparation
Download [Gait3D](https://gait3d.github.io/resources/AgreementForGait3D.pdf) dataset.
Please download the **Gait3D dataset** by signing an [agreement](https://gait3d.github.io/resources/AgreementForGait3D.pdf). We ask for your information only to make sure the dataset is used for non-commercial purposes. We will not give it to any third party or publish it publicly anywhere.

### Data Pretreatment
Run the following command to preprocess the Gait3D dataset.
Expand Down Expand Up @@ -150,4 +150,10 @@ Please cite this paper in your publications if it helps your research:
```

## Acknowledgement
- [OpenGait](https://github.com/ShiqiYu/OpenGait)
Here are some great resources we benefit:

- The codebase is based on [OpenGait](https://github.com/ShiqiYu/OpenGait).
- The 3D SMPL data is obtained by [ROMP](https://github.com/Arthur151/ROMP).
- The 2D Silhouette data is obtained by [HRNet-segmentation](https://github.com/HRNet/HRNet-Semantic-Segmentation).
- The 2D pose data is obtained by [HRNet](https://github.com/HRNet/HRNet-Human-Pose-Estimation).
- The ReID featrue used to make Gait3D is obtained by [FastReID](https://github.com/JDAI-CV/fast-reid).
6 changes: 3 additions & 3 deletions misc/run_pretreatment_grew.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pretreat train set
python misc/pretreatment_grew.py --input_path "/path/to/GREW/train" --output_path "GREW-64-44-pkl/train" --img_h 64 --img_w 44 --subset "train"
python misc/pretreatment_grew.py --input_path "/path/to/GREW" --output_path "GREW-64-44-pkl" --img_h 64 --img_w 44 --subset "train"
# pretreat test-gallery set
python misc/pretreatment_grew.py --input_path "/path/to/GREW/test/gallery" --output_path "GREW-64-44-pkl/test/gallery" --img_h 64 --img_w 44 --subset "test/gallery"
python misc/pretreatment_grew.py --input_path "/path/to/GREW" --output_path "GREW-64-44-pkl" --img_h 64 --img_w 44 --subset "test/gallery"
# pretreat test-probe set
python misc/pretreatment_grew_probe.py --input_path "/path/to/GREW/test/probe" --output_path "GREW-64-44-pkl/test/probe" --img_h 64 --img_w 44
python misc/pretreatment_grew_probe.py --input_path "/path/to/GREW" --output_path "GREW-64-44-pkl" --img_h 64 --img_w 44

0 comments on commit 7f3964a

Please sign in to comment.