Datasets:
Search is not available for this dataset
image
image | label
image |
---|---|
End of preview. Expand
in Dataset Viewer.
AgroSegNet
This dataset comprises synthetic images captured from a top-down perspective, featuring two distinct annotations: one for direct sunlight and another for human and plant segmentation.
Example loader
Install Hugging Face datasets package
pip install datasets
Download the dataset
from datasets import load_dataset
dataset = load_dataset("Menchen/AgroSegNet","default") # Change "default" to "default-tiny" to preview and test
Load the data
Images and masks are stored as PIL, for example:
dataset["train"][1]["image"] # PIL image to rendered image
dataset["train"][1]["label"] # PIL image to mask
- Downloads last month
- 842