add license
Browse files
README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
| 2 |
pretty_name: IGVC Segmentation Dataset
|
| 3 |
tags:
|
| 4 |
- image
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
# IGCV Segmentation Dataset
|
|
@@ -18,7 +19,7 @@ Each instance consists of an reference image from the point of view of the robot
|
|
| 18 |
|
| 19 |
**Test**
|
| 20 |
|
| 21 |
-
10 frames captured from the [SCR 2023 IGVC run](https://www.youtube.com/watch?v=7tZsk3T3STA) (manually segmented) + 13 frames rendered in 4 lighting environments =
|
| 22 |
|
| 23 |
## Usage
|
| 24 |
|
|
@@ -72,7 +73,7 @@ class SegmentationDataset(Dataset):
|
|
| 72 |
return splits["train"]
|
| 73 |
```
|
| 74 |
|
| 75 |
-
Using
|
| 76 |
|
| 77 |
```python
|
| 78 |
train_dataset = SegmentationDataset(split=Split.TRAIN)
|
|
|
|
| 2 |
pretty_name: IGVC Segmentation Dataset
|
| 3 |
tags:
|
| 4 |
- image
|
| 5 |
+
license: cc-by-4.0
|
| 6 |
---
|
| 7 |
|
| 8 |
# IGCV Segmentation Dataset
|
|
|
|
| 19 |
|
| 20 |
**Test**
|
| 21 |
|
| 22 |
+
10 frames captured from the [SCR 2023 IGVC run](https://www.youtube.com/watch?v=7tZsk3T3STA) (manually segmented) + 13 frames rendered in 4 lighting environments = 62 images
|
| 23 |
|
| 24 |
## Usage
|
| 25 |
|
|
|
|
| 73 |
return splits["train"]
|
| 74 |
```
|
| 75 |
|
| 76 |
+
Using this adapter, the dataset can simple be passed to the [`DataLoader`](https://docs.pytorch.org/docs/stable/data.html#torch.utils.data.DataLoader):
|
| 77 |
|
| 78 |
```python
|
| 79 |
train_dataset = SegmentationDataset(split=Split.TRAIN)
|