Datasets:
Upload folder using huggingface_hub
Browse files- README.md +64 -0
- axis-system-vis.jpeg +3 -0
- data/camera_parameters.csv +0 -0
- data/examples/000000000.jpg +3 -0
- data/examples/000000001.jpg +3 -0
- data/examples/000000002.jpg +3 -0
- data/examples/000000003.jpg +3 -0
- data/examples/000000004.jpg +3 -0
- data/images_part_0.zip +3 -0
- data/images_part_1.zip +3 -0
- data/images_part_2.zip +3 -0
- data/images_part_3.zip +3 -0
- data/images_part_4.zip +3 -0
- data/images_part_5.zip +3 -0
- data/images_part_6.zip +3 -0
- data/images_part_7.zip +3 -0
- labeling.png +3 -0
- src/requirements.txt +5 -0
- src/vis_labels.ipynb +0 -0
- synth_df_statistics.png +3 -0
README.md
CHANGED
|
@@ -1,3 +1,67 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-sa-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-sa-4.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- sports
|
| 7 |
+
- pitch-localisation
|
| 8 |
+
- football
|
| 9 |
+
- Sports Field Localization
|
| 10 |
+
pretty_name: FootballCameraSynth
|
| 11 |
+
size_categories:
|
| 12 |
+
- 10K<n<100K
|
| 13 |
---
|
| 14 |
+
# **FootballCamSynth: A Synthetic Football Dataset with Camera Parameters**
|
| 15 |
+
|
| 16 |
+
## **Overview**
|
| 17 |
+
**FootballCamSynth** is a synthetic dataset created using a customized version of the **Google Research Football Simulator**. It contains **40,000 images** with **camera parameter annotations**, making it useful for **sports field registration, camera calibration, and synthetic-to-real adaptation**.
|
| 18 |
+
|
| 19 |
+
## **Dataset Features**
|
| 20 |
+
- **40,000 high-quality images** of simulated football scenes.
|
| 21 |
+
- **Randomized textures**: Grass, pitch lines, and uniforms are sampled from a predefined set for diversity.
|
| 22 |
+
- **Dynamic camera settings**:
|
| 23 |
+
- **Position (x, y, z)** sampled within realistic field boundaries.
|
| 24 |
+
- **Orientation (pan, tilt, roll)**: The roll is fixed at `0`, while pan and tilt adjust to keep the field in view.
|
| 25 |
+
- **Field of View (FoV)** varies across images.
|
| 26 |
+
|
| 27 |
+
## **Usage**
|
| 28 |
+
This dataset is ideal for:
|
| 29 |
+
✔ **Camera parameter estimation**
|
| 30 |
+
✔ **Football scene understanding**
|
| 31 |
+
✔ **Synthetic-to-real adaptation**
|
| 32 |
+
|
| 33 |
+
## **Dataset Statistics**
|
| 34 |
+
Below is a visualization of key dataset distributions, including camera positions, orientations, and FoV:
|
| 35 |
+

|
| 36 |
+
|
| 37 |
+
## **Annotations**
|
| 38 |
+
camera_parameters.csv contains annotations for all images. Each image is annotated with:
|
| 39 |
+
```json
|
| 40 |
+
{
|
| 41 |
+
"image_name": "000000000.jpg",
|
| 42 |
+
"aov": 1.1664075131018652,
|
| 43 |
+
"c_x": 41.564503873575774,
|
| 44 |
+
"c_y": 91.01672333543827,
|
| 45 |
+
"c_z": -10.775780120664296,
|
| 46 |
+
"pan": -1.0167846147515798,
|
| 47 |
+
"roll": 0.0,
|
| 48 |
+
"tilt": 1.4723548512164744,
|
| 49 |
+
"h": 1080,
|
| 50 |
+
"w": 1920
|
| 51 |
+
}
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
## **Visualization & Projection Matrix**
|
| 55 |
+
To **visualize the labeled data** and compute the **projection matrix**, use the Jupyter notebook:
|
| 56 |
+
|
| 57 |
+
📂 **`src/vis_labels.ipynb`**
|
| 58 |
+

|
| 59 |
+
|
| 60 |
+
## **License**
|
| 61 |
+
📜 CC-BY-NC-4.0 – Free to use for research and non-commercial purposes with attribution.
|
| 62 |
+
|
| 63 |
+
## **Usage**
|
| 64 |
+
This dataset is ideal for:
|
| 65 |
+
✔ **Camera parameter estimation**
|
| 66 |
+
✔ **Football scene understanding**
|
| 67 |
+
✔ **Synthetic-to-real adaptation**
|
axis-system-vis.jpeg
ADDED
|
Git LFS Details
|
data/camera_parameters.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/examples/000000000.jpg
ADDED
|
Git LFS Details
|
data/examples/000000001.jpg
ADDED
|
Git LFS Details
|
data/examples/000000002.jpg
ADDED
|
Git LFS Details
|
data/examples/000000003.jpg
ADDED
|
Git LFS Details
|
data/examples/000000004.jpg
ADDED
|
Git LFS Details
|
data/images_part_0.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee6fcf7071c74aa31ae6dc3e915afde19121d4a42e11096577878401fff2041c
|
| 3 |
+
size 3426948118
|
data/images_part_1.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d4fe91e45916ae7df1a4383d7424943e260cdcee09bea1118e2f6cca53d38e5
|
| 3 |
+
size 3394840923
|
data/images_part_2.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2cde90bd7c3d317ae84e573312140742518b35ebdbba46db0ee86b69501a668
|
| 3 |
+
size 3382207390
|
data/images_part_3.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6ec98a0a1e013f3ce7fa8016a71e14402d7d854b59bdda0403cfcbe46e575a3
|
| 3 |
+
size 3414041627
|
data/images_part_4.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5d1df0c461ad08e774d51c6b44fd0eb84865c94ea45b95ca4aba68040902e096
|
| 3 |
+
size 3447968470
|
data/images_part_5.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2cbddee2408de519ab9e7eb1c791b6c78796de09759a23303188e0ee35dfaad1
|
| 3 |
+
size 3470102451
|
data/images_part_6.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94f37a6ceebe2405dfa2e55f1f9513c14fc45c9725e2124e65d625fde4a110a4
|
| 3 |
+
size 3453223042
|
data/images_part_7.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb028b35975e95f6c93d91b22a1f352b6f8108910b0242d0efff15d6fdfd23c9
|
| 3 |
+
size 3434082662
|
labeling.png
ADDED
|
Git LFS Details
|
src/requirements.txt
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pandas
|
| 2 |
+
numpy
|
| 3 |
+
matplotlib
|
| 4 |
+
pillow
|
| 5 |
+
seaborn
|
src/vis_labels.ipynb
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
synth_df_statistics.png
ADDED
|
Git LFS Details
|