Update README.md
Browse files
README.md
CHANGED
|
@@ -53,40 +53,40 @@ The **IndustrialLateralLoads** dataset is designed for object detection and inst
|
|
| 53 |
When loaded using the `datasets` library, each sample contains the following fields:
|
| 54 |
|
| 55 |
- **`image`**: A `PIL.Image` object containing the original RGB image.
|
| 56 |
-
- **`mask`**: A `PIL.Image` object containing the segmentation mask.
|
| 57 |
- **`class_id`**: The classification label of the load (integer mapped to class name).
|
| 58 |
- **`bbox`**: The bounding box coordinates in the format `[x_min, y_min, width, height]`.
|
| 59 |
-
- **`mask_rgb_color`**:
|
| 60 |
|
| 61 |
### Raw data organization (repository files):
|
| 62 |
If you prefer to download the raw files directly, the repository includes the following folders:
|
| 63 |
|
| 64 |
- **`images`**: Contains the source images.
|
| 65 |
-
- **`masks`**: Contains the PNG segmentation masks.
|
| 66 |
- **`bboxes`**: Contains `.txt` files with bounding box annotations.
|
| 67 |
|
| 68 |
**Remark 1.** Each row in a `.txt` file (inside the `bboxes` folder) follows this format:
|
| 69 |
|
| 70 |
`<class_name> <instance_id> <x_min> <y_min> <width> <height>`,
|
| 71 |
|
| 72 |
-
where the `<instance_id>` field is legacy and not
|
| 73 |
|
| 74 |
**Remark 2.** The segmentation masks are provided as **binary RGB images**. They contain only **two** distinct pixel values:
|
| 75 |
- **Background:** Black `(0, 0, 0)`.
|
| 76 |
- **Foreground:** The specific **RGB Color** associated with the class ID listed below.
|
| 77 |
| Class ID | Class Name | Foreground RGB Color |
|
| 78 |
| :------- | :---------------------- | :------------------- |
|
| 79 |
-
| **0** | **verde_plastico** | (51, 221, 255) |
|
| 80 |
-
| **1** | **azul** | (255, 204, 51) |
|
| 81 |
-
| **2** | **negro_plastico** | (52, 209, 183) |
|
| 82 |
-
| **3** | **negro_carton** | (255, 96, 55) |
|
| 83 |
-
| **4** | **roja_plastico** | (36, 179, 83) |
|
| 84 |
-
| **5** | **carton** | (255, 125, 187) |
|
| 85 |
-
| **6** | **verde_carton** | (221, 255, 51) |
|
| 86 |
-
| **7** | **roja_eldulze** | (170, 240, 209) |
|
| 87 |
-
| **8** | **verde_plastico_oscuro**| (255, 10, 124) |
|
| 88 |
-
| **9** | **verde_cogollo** | (184, 61, 245) |
|
| 89 |
-
| **10** | **ilfres** | (116, 113, 206) |
|
| 90 |
### Scientific validation & ongoing research:
|
| 91 |
This dataset serves as a benchmark for validating computer vision approaches in industrial logistics. It remains an active resource for ongoing research, with current efforts shifting towards **instance segmentation** methodologies in industrial environments.
|
| 92 |
|
|
|
|
| 53 |
When loaded using the `datasets` library, each sample contains the following fields:
|
| 54 |
|
| 55 |
- **`image`**: A `PIL.Image` object containing the original RGB image.
|
| 56 |
+
- **`mask`**: A `PIL.Image` object containing the binary segmentation mask.
|
| 57 |
- **`class_id`**: The classification label of the load (integer mapped to class name).
|
| 58 |
- **`bbox`**: The bounding box coordinates in the format `[x_min, y_min, width, height]`.
|
| 59 |
+
- **`mask_rgb_color`**: An `[R, G, B]` list specifying the RGB triplet associated with the class in the binary mask.
|
| 60 |
|
| 61 |
### Raw data organization (repository files):
|
| 62 |
If you prefer to download the raw files directly, the repository includes the following folders:
|
| 63 |
|
| 64 |
- **`images`**: Contains the source images.
|
| 65 |
+
- **`masks`**: Contains the binary PNG segmentation masks.
|
| 66 |
- **`bboxes`**: Contains `.txt` files with bounding box annotations.
|
| 67 |
|
| 68 |
**Remark 1.** Each row in a `.txt` file (inside the `bboxes` folder) follows this format:
|
| 69 |
|
| 70 |
`<class_name> <instance_id> <x_min> <y_min> <width> <height>`,
|
| 71 |
|
| 72 |
+
where the `<instance_id>` field is legacy and not relevant in the currently published dataset.
|
| 73 |
|
| 74 |
**Remark 2.** The segmentation masks are provided as **binary RGB images**. They contain only **two** distinct pixel values:
|
| 75 |
- **Background:** Black `(0, 0, 0)`.
|
| 76 |
- **Foreground:** The specific **RGB Color** associated with the class ID listed below.
|
| 77 |
| Class ID | Class Name | Foreground RGB Color |
|
| 78 |
| :------- | :---------------------- | :------------------- |
|
| 79 |
+
| **0** | **verde_plastico** | `(51, 221, 255)` |
|
| 80 |
+
| **1** | **azul** | `(255, 204, 51)` |
|
| 81 |
+
| **2** | **negro_plastico** | `(52, 209, 183)` |
|
| 82 |
+
| **3** | **negro_carton** | `(255, 96, 55)` |
|
| 83 |
+
| **4** | **roja_plastico** | `(36, 179, 83)` |
|
| 84 |
+
| **5** | **carton** | `(255, 125, 187)` |
|
| 85 |
+
| **6** | **verde_carton** | `(221, 255, 51)` |
|
| 86 |
+
| **7** | **roja_eldulze** | `(170, 240, 209)` |
|
| 87 |
+
| **8** | **verde_plastico_oscuro**| `(255, 10, 124)` |
|
| 88 |
+
| **9** | **verde_cogollo** | `(184, 61, 245)` |
|
| 89 |
+
| **10** | **ilfres** | `(116, 113, 206)` |
|
| 90 |
### Scientific validation & ongoing research:
|
| 91 |
This dataset serves as a benchmark for validating computer vision approaches in industrial logistics. It remains an active resource for ongoing research, with current efforts shifting towards **instance segmentation** methodologies in industrial environments.
|
| 92 |
|