Datasets:
Size:
10K<n<100K
License:
File size: 4,975 Bytes
f160861 4bae812 f160861 ab3c3a1 973aa5c ab3c3a1 6422f8c c73557d ab3c3a1 6422f8c ab3c3a1 027e44d ab3c3a1 027e44d ab3c3a1 c73557d ab3c3a1 4bae812 |
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 |
---
license: cc-by-nc-4.0
task_categories:
- image-segmentation
- depth-estimation
tags:
- agriculture
- synthetic-data
- tomato
- plant-disease
size_categories:
- 10K<n<100K
---
# Dataset Summary
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:**
- **Repository:**
- **Paper:**
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
This dataset consist of 21,384 2448x2048 pairs of synthetic images for tomato plants. Each pair consist of left/right RGBD, and panoptic segmentation labels for the left image. See `example_load.py` for usage.
`sample` loads a 835MB subset with 108 pairs.
`all` loads the full 160GB dataset with 21,384 pairs.
### Supported Tasks and Leaderboards
- `image-segmentation`: Both panoptic and semantic labels for separating tomato plants and identifying features and disease types in the dataset.
- `depth-estimation`: ground truth depth values for stereo and monocular applications.
### Languages
English
## Dataset Structure
### Data Instances
Each datapoint consist of 6 images:
```
{
'left_rgb': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=2448x2048 at 0x7F63FB5F4350>,
'right_rgb': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=2448x2048 at 0x7F63FF2B3950>,
'left_semantic': <PIL.PngImagePlugin.PngImageFile image mode=L size=2448x2048 at 0x7F63FC4488C0>,
'left_instance': <PIL.TiffImagePlugin.TiffImageFile image mode=I;16 size=2448x2048 at 0x7F63FC497EF0>,
'left_depth': <PIL.TiffImagePlugin.TiffImageFile image mode=F size=2448x2048 at 0x7F63FACF6E70>,
'right_depth': <PIL.TiffImagePlugin.TiffImageFile image mode=F size=2448x2048 at 0x7F63FACF7560>
}
```
### Data Fields
- 'left_rgb': Left RGB image, was compressed to 95\% quality.
- 'right_rgb': Right RGB image, was compressed to 95\% quality. Note the baseline is 3.88112 cm and HFOV is 95.452621 degrees.
- 'left_semantic': Rendered colors that denotes the RGB label for individual pixels. See `example_load.py` for classes and sample scripts.
- 'left_instance': Rendered colors that denotes the tomato plant instances for individual pixels.
- 'left_depth': Rendered left depth compressed to 16-bit floats (in centimeters).
- 'right_depth': Rendered right depth compressed to 16-bit floats (in centimeters).
### Data Splits
80/20 as shown in the train.txt and val.txt.
## Dataset Creation
### Curation Rationale
Created to provide dataset for dense plant disease detection for an agricultural research robotics platform with corresponding camera sensors and strobe lighting.
### Source Data
#### Initial Data Collection and Normalization
We used PlantVillage Dataset with further processing to align the healthy leaf colors with the purchased assets. We collected 750GB of original data where we compressed the depth images from 32-bit to 16-bit and RGB to 95\% quality for ~160GB.
#### Who are the source language producers?
See PlantVillage Datasets for tomato diseases. The tomato plants were purchased through SketchFab with modifications for extra green tomatoes and denser leaves.
### Annotations
#### Annotation process
Annotations automatically generated through the textures in the simulation. The textures (two images) were labeled by dataset creators. The disease textures labels were labeled by PlantVillage creators that consist of experts in plant diseases.
#### Who are the annotators?
Same as dataset creators. Tomato leaf diseases the same as PlantVillage creators.
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
CC BY-NC-4.0
### Citation Information
[More Information Needed]
### Contributions
[More Information Needed] |