Skip to content

Commit

Permalink
Update directory tree
Browse files Browse the repository at this point in the history
  • Loading branch information
jaagut committed Apr 29, 2021
1 parent 8283698 commit 116ffc6
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
data/

masks*
segmentation*
*.pyc
Expand Down
36 changes: 26 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,38 @@
## TORSO-21 Dataset: Typical Objects in RoboCup Soccer 2021

This repository contains the scripts for the Hamburg Bit-Bots Vision Dataset 2021.
This repository contains the scripts for the TORSO-21 Dataset.

The images can be downloaded here: https://cloud.crossmodal-learning.org/s/3wt3Sgyxc7pC5QT

The repository structure is as follows:

```
├── data # contains the labels
│   ├── collection_a # a collection of images
│   │ └── labels.yaml # the labels in yaml format
│   └── ...
└── scripts # some useful scripts
├── data # Download the dataset here
| ├── reality/ # Collection of real world data
| │ ├── test/ # Test split
| │ │ ├── annotations.yaml # Contains annotations
| │ │ ├── images/ # Original images
| │ │ └── segmentation/ # Corresponding segmentations (field, lines)
| │ └── train/ # Train split
| │ ├── annotations.yaml
| │ ├── images/
| │ └── segmentation/
| └── simulation/ # Collection of simulated data
| ├── test/
| │ ├── annotations.yaml
| │ ├── depth/ # Depth images
| │ ├── images/
| │ └── segmentation/
| └── train/
| ├── annotations.yaml
| ├── depth/
| ├── images/
| └── segmentation/
└── scripts # Some useful scripts
└── example_script.py
└── ...
```

TODO: Define image folders in collections

The annotations are in the following format:

```yaml
Expand All @@ -43,7 +59,7 @@ images:
x: 0
y: 0
z: 0
w: 0
w: 0
- in_image: false
type: ball
metadata: # The keys should be like this but do not need to be present for all images
Expand Down Expand Up @@ -96,7 +112,7 @@ You can also use `poetry run <script>` to run scripts without sourcing.

TODO test if this really works like this. maybe also create just one bash script which calls all of these after each other

Get dataset
Get dataset
`download.py -a`

Add metadata to annotations
Expand Down

0 comments on commit 116ffc6

Please sign in to comment.