Skip to content

Commit

Permalink
add script for downloading carla camera poses
Browse files Browse the repository at this point in the history
  • Loading branch information
katjaschwarz committed Jan 22, 2021
1 parent cf73337 commit e53ff20
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,14 @@ cd data
./download_carla.sh
cd ..
```
This creates a folder `data/carla/` and downloads the images as a zip file.
Next extract the images to `data/carla/`.
This creates a folder `data/carla/` downloads the images as a zip file and extracts them to `data/carla/`.
While we do <em>not</em> use camera poses in this project we provide them for completeness. Your can download them by running
```
cd data
./download_carla_poses.sh
cd ..
```
This downloads the camera intrinsics (single file, equal for all images) and extrinsics corresponding to each image.

### Faces

Expand Down
5 changes: 5 additions & 0 deletions data/download_carla_poses.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
mkdir -p ./carla
cd ./carla
wget https://s3.eu-central-1.amazonaws.com/avg-projects/graf/data/carla_poses.zip
unzip carla_poses.zip
cd ..

0 comments on commit e53ff20

Please sign in to comment.