Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
tags:
|
| 4 |
+
- computer-vision
|
| 5 |
+
- semantic-segmentation
|
| 6 |
+
- mining
|
| 7 |
+
- industrial-inspection
|
| 8 |
+
- monorail
|
| 9 |
+
- underground-environment
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Mine Monorail Track Segmentation Dataset
|
| 13 |
+
|
| 14 |
+
This dataset supports semantic segmentation of **mine-use suspended monorails** in simulated underground environments. It was collected in a dedicated experimental workshop provided by an industrial partner and includes images captured under diverse structural and illumination conditions to reflect realistic operational challenges.
|
| 15 |
+
|
| 16 |
+
## 📷 Data Collection
|
| 17 |
+
|
| 18 |
+
- **Camera**: Hikvision DS-2CD2820FWD
|
| 19 |
+
- **Sensor**: 1/2.8" Progressive Scan CMOS
|
| 20 |
+
- **Resolution**: 1280×720 (from native 1920×1080)
|
| 21 |
+
|
| 22 |
+
Images were captured in a controlled workshop that replicates key characteristics of underground monorail roadways, including track geometry, lighting variability, and common obstructions.
|
| 23 |
+
|
| 24 |
+
## 🗂️ Dataset Statistics
|
| 25 |
+
|
| 26 |
+
- **Total images**: 2,681
|
| 27 |
+
- **Annotation tool**: LabelMe (pixel-level precision)
|
| 28 |
+
- **Classes**:
|
| 29 |
+
- `0`: Background
|
| 30 |
+
- `1`: Monorail Track
|
| 31 |
+
- **Track configurations**:
|
| 32 |
+
- Straight segments
|
| 33 |
+
- Curved sections
|
| 34 |
+
- Ascending slopes
|
| 35 |
+
- Descending slopes
|
| 36 |
+
- **Illumination conditions**:
|
| 37 |
+
- Normal lighting
|
| 38 |
+
- Low-light
|
| 39 |
+
- Overexposed
|
| 40 |
+
|
| 41 |
+
Each image is paired with a single-channel PNG mask where pixel values correspond to class IDs.
|
| 42 |
+
|
| 43 |
+
## 🔧 Data Augmentation (for reference)
|
| 44 |
+
|
| 45 |
+
To improve model robustness under harsh mining conditions, the authors employed a specialized data augmentation pipeline during training that simulates:
|
| 46 |
+
- **Low-light scenarios** through controlled brightness reduction,
|
| 47 |
+
- **Sensor noise** via Gaussian and salt-and-pepper noise injection,
|
| 48 |
+
- **Dust interference** using color overlays, texture synthesis, and visibility attenuation.
|
| 49 |
+
|
| 50 |
+
> 💡 **Note**: The raw dataset contains only original images and ground-truth masks—**no augmented samples are included**. Full technical details of the augmentation strategy are provided in the associated paper (Section 4.5).
|
| 51 |
+
|
| 52 |
+
## 📁 Directory Structure
|
| 53 |
+
|
| 54 |
+
```monorail-seg/
|
| 55 |
+
├── images/
|
| 56 |
+
│ ├── Training_Input/
|
| 57 |
+
│ ├── Validation_Input/
|
| 58 |
+
│ └── Test_Input/
|
| 59 |
+
├── labels/
|
| 60 |
+
│ ├── Training_GroundTruth/
|
| 61 |
+
│ ├── Validation_GroundTruth/
|
| 62 |
+
│ └── Test_GroundTruth/
|
| 63 |
+
├── README.md
|
| 64 |
+
└── LICENSE
|
| 65 |
+
```
|