Created
October 24, 2016 14:56
-
-
Save yu4u/32febdc55658f5b98c251c16cd4c53b8 to your computer and use it in GitHub Desktop.
Download Caltech Pedestrian Detection Benchmark
This file contains hidden or 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
| #!/bin/bash | |
| # download toolbox | |
| git clone https://github.com/pdollar/toolbox pdollar_toolbox | |
| # download evaluation/labeling code | |
| wget http://www.vision.caltech.edu/Image_Datasets/CaltechPedestrians/code/code3.2.1.zip | |
| mkdir code | |
| unzip code3.2.1.zip -d code | |
| rm code3.2.1.zip | |
| # download annotations | |
| cd code | |
| mkdir data-USA | |
| cd data-USA | |
| wget http://www.vision.caltech.edu/Image_Datasets/CaltechPedestrians/datasets/USA/annotations.zip | |
| unzip annotations.zip | |
| rm annotations.zip | |
| # download results | |
| mkdir res | |
| cd res | |
| list=("VJ" "HOG" "FPDW" "RPN+BF" "MS-CNN") | |
| for method in "${list[@]}" | |
| do | |
| wget http://www.vision.caltech.edu/Image_Datasets/CaltechPedestrians/datasets/USA/res/${method}.zip | |
| unzip ${method}.zip | |
| rm ${method}.zip | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment