Datasets:
File size: 4,658 Bytes
9508ed5 41ec3ae f893415 9508ed5 f893415 9508ed5 f893415 9508ed5 f893415 41ec3ae f893415 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | ---
pretty_name: "WE3DS-small: A 576-Image Subset of WE3DS"
license: cc-by-4.0
language:
- en
tags:
- image
- semantic-segmentation
- agriculture
- weed-detection
- crop-farming
- computer-vision
- rgb-d
- plant-species
task_categories:
- image-segmentation
task_ids:
- semantic-segmentation
size_categories:
- n<1K
source_datasets:
- synthgen/WE3DS
dataset_info:
features:
- name: image
dtype: image
- name: annotation
dtype: image
- name: date
dtype: string
- name: time
dtype: string
- name: latitude
dtype: float64
- name: longitude
dtype: float64
- name: weather
dtype: string
- name: wind
dtype: string
- name: seeding_date
dtype: string
- name: height_mm
dtype: int32
splits:
- name: train
num_examples: 344
- name: test
num_examples: 232
---
# WE3DS-small: A 576-Image Subset of WE3DS - https://zenodo.org/records/7457983
> **This is a curated subset of [synthgen/WE3DS](https://huggingface.co/datasets/synthgen/WE3DS). All credit goes to the original authors.**
## Overview
A lightweight **576-image subset** of the WE3DS dataset, designed for quick prototyping, demos, and experimentation without downloading the full 2,568-image dataset. Contains the same data fields and format as the full dataset.
## Original Authors
**Florian Kitzler**, **Norbert Barta**, **Reinhard W. Neugschwandtner**, **Andreas Gronauer**, **Viktoria Motsch**
University of Natural Resources and Life Sciences, Vienna (BOKU)
- **Full dataset**: [synthgen/WE3DS](https://huggingface.co/datasets/synthgen/WE3DS)
- **Original source**: [Zenodo (DOI: 10.5281/zenodo.7457983)](https://doi.org/10.5281/zenodo.7457983)
- **Paper**: [Sensors 2023, 23(5), 2713](https://doi.org/10.3390/s23052713)
- **License**: [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
## Semantic Classes (19)
| ID | Class | Type |
|----|-------|------|
| 0 | void | background |
| 1 | soil | background |
| 2 | broad bean | crop |
| 3 | corn spurry | weed |
| 4 | red-root amaranth | weed |
| 5 | common buckwheat | crop |
| 6 | pea | crop |
| 7 | red fingergrass | weed |
| 8 | common wild oat | weed |
| 9 | cornflower | weed |
| 10 | corn cockle | weed |
| 11 | corn | crop |
| 12 | milk thistle | weed |
| 13 | rye brome | weed |
| 14 | soybean | crop |
| 15 | sunflower | crop |
| 16 | narrow-leaved plantain | weed |
| 17 | small-flower geranium | weed |
| 18 | sugar beet | crop |
## Dataset Structure
### Data Fields
- `image`: RGB image (PNG, 1600×1144)
- `annotation`: Segmentation mask (PNG, 1600×1144, pixel values = class IDs 0–18)
- `date`: Capture date (DD.MM.YYYY)
- `time`: Local capture time (HH:MM:SS)
- `latitude`: GPS latitude (WGS84)
- `longitude`: GPS longitude (WGS84)
- `weather`: Categorical — sunny, cloudy, or mixed
- `wind`: Categorical — light, medium, or strong
- `seeding_date`: Planting date (DD.MM.YYYY)
- `height_mm`: Estimated plant height in millimeters
### Data Splits
| Split | Images |
|-------|--------|
| Train | 344 (60%) |
| Test | 232 (40%) |
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("synthgen/WE3DS-small")
# Access a training example
example = dataset["train"][0]
image = example["image"] # PIL Image (RGB)
mask = example["annotation"] # PIL Image (segmentation mask)
```
For the full dataset (2,568 images), use:
```python
dataset = load_dataset("synthgen/WE3DS")
```
## Citation
If you use this dataset, **please cite the original authors**:
```bibtex
@article{Kitzler2023WE3DS,
author = {Kitzler, Florian and Barta, Norbert and Neugschwandtner, Reinhard W. and Gronauer, Andreas and Motsch, Viktoria},
title = {WE3DS: An RGB-D Image Dataset for Semantic Segmentation in Agriculture},
journal = {Sensors},
year = {2023},
volume = {23},
number = {5},
pages = {2713},
doi = {10.3390/s23052713}
}
```
```bibtex
@dataset{Kitzler2023WE3DSdata,
author = {Kitzler, Florian and Barta, Norbert and Neugschwandtner, Reinhard W. and Gronauer, Andreas and Motsch, Viktoria},
title = {WE3DS: An RGB-D image dataset for semantic segmentation in agriculture},
year = {2023},
publisher = {Zenodo},
version = {v1},
doi = {10.5281/zenodo.7457983},
url = {https://doi.org/10.5281/zenodo.7457983}
}
```
## Acknowledgments
The original dataset was created as part of the **"DiLaAg – Digitalization and Innovation Laboratory in Agricultural Sciences"** project, funded by the Government of Lower Austria and the private foundation Forum Morgen.
|