bougacha commited on
Commit
7e4ee02
·
1 Parent(s): b2afedf

add ReadMe

Browse files
Files changed (1) hide show
  1. README.md +34 -20
README.md CHANGED
@@ -1,30 +1,44 @@
1
- ---
2
- Dataset Description
3
- ===================
4
 
5
- This dataset contains 8,000 satellite images of runway piano markings, captured from Google Maps satellite view with a consistent heading.
 
6
 
7
- Dataset Structure:
8
- ------------------
9
- - `images/` : Contains 8,000 images of size 640x640 pixels.
10
- - Images are named using the format:
11
- `{airport_ident}_{runway_ident}.png`
12
 
13
- - `labels/` : Contains corresponding `.txt` files for each image.
 
 
14
 
15
- Label Format:
16
- -------------
17
- Each `.txt` file follows the structure:
18
 
19
- x0,y0,x1,y1
20
 
21
- where:
22
- - (x0, y0) represents the top-left corner of the piano.
23
- - (x1, y1) represents the bottom-right corner of the piano.
24
 
25
- Each label file corresponds to an image in the `images/` folder with the same filename (but with a `.txt` extension).
 
 
26
 
 
 
 
27
 
 
 
 
28
 
29
- license: mit
30
- ---
 
 
 
 
 
 
 
 
1
+ # Runway Piano Markings Dataset
 
 
2
 
3
+ ## Overview
4
+ This dataset contains 8,000 satellite images of runway piano markings captured from Google Maps (satellite view). All images share a consistent heading and orientation, making the dataset suitable for detection, localization, and regression tasks involving runway markings.
5
 
6
+ ## Dataset Structure
7
+ images/
8
+ ├── {airport_ident}_{runway_ident}.png
9
+ └── ... (8,000 images, 640×640)
 
10
 
11
+ labels/
12
+ ├── {airport_ident}_{runway_ident}.txt
13
+ └── ... (one label file per image)
14
 
15
+ - images/: PNG images of size 640 × 640 pixels
16
+ - labels/: Text files containing the corresponding bounding box annotations
 
17
 
18
+ Each image has exactly one corresponding label file with the same base filename.
19
 
20
+ ## File Naming Convention
21
+ Images and labels follow the naming scheme:
22
+ {airport_ident}_{runway_ident}
23
 
24
+ Example:
25
+ LFPG_09L.png
26
+ LFPG_09L.txt
27
 
28
+ ## Annotation Format
29
+ Each label file contains a single line with four comma-separated values:
30
+ x0,y0,x1,y1
31
 
32
+ Where:
33
+ - (x0, y0): Top-left corner of the runway piano marking
34
+ - (x1, y1): Bottom-right corner of the runway piano marking
35
 
36
+ All coordinates are expressed in pixel space, relative to the top-left corner of the image.
37
+
38
+ ## Notes
39
+ - Each image contains one runway piano marking
40
+ - All runways are oriented in the same direction due to consistent map heading
41
+ - Suitable for object detection, bounding-box regression, and localization tasks
42
+
43
+ ## License
44
+ MIT License