cemsaz / city-scapes-script

Download City Scapes Dataset using this script

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

city-scapes-script

Download City Scapes Dataset directly using this script. This makes it easier when deploying on server.

Getting Started

In order to use the City Scapes dataset, you need to create an account in their website (https://www.cityscapes-dataset.com/). You need to login to download the data. This makes it difficult to download the data directly on your server. You can use the script provided here to directly download the data.

dataset

The Script

In the first command, put your username and password. This will login with your credentials and keep the associated cookie.

wget --keep-session-cookies --save-cookies=cookies.txt --post-data 'username=myusername&password=mypassword&submit=Login' https://www.cityscapes-dataset.com/login/

In the second command, you need to provide the packageID paramater.

wget --load-cookies cookies.txt --content-disposition https://www.cityscapes-dataset.com/file-handling/?packageID=1

packageID=1 will download the file gtFine_trainvaltest.zip
You can change it to download another package. packageIDs map like this:

1 -> gtFine_trainvaltest.zip (241MB)
2 -> gtCoarse.zip (1.3GB)
3 -> leftImg8bit_trainvaltest.zip (11GB)
4 -> leftImg8bit_trainextra.zip (44GB)
8 -> camera_trainvaltest.zip (2MB)
9 -> camera_trainextra.zip (8MB)
10 -> vehicle_trainvaltest.zip (2MB)
11 -> vehicle_trainextra.zip (7MB)
12 -> leftImg8bit_demoVideo.zip (6.6GB)
28 -> gtBbox_cityPersons_trainval.zip (2.2MB)

About

Download City Scapes Dataset using this script


Languages

Language:Shell 100.0%