Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,4 @@
|
|
| 1 |
---
|
| 2 |
-
license: cc
|
| 3 |
configs:
|
| 4 |
- config_name: 'omni'
|
| 5 |
data_files:
|
|
@@ -17,4 +16,64 @@ configs:
|
|
| 17 |
data_files:
|
| 18 |
- path: data/train/tless/*.tar
|
| 19 |
split: train
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
configs:
|
| 3 |
- config_name: 'omni'
|
| 4 |
data_files:
|
|
|
|
| 16 |
data_files:
|
| 17 |
- path: data/train/tless/*.tar
|
| 18 |
split: train
|
| 19 |
+
task_categories:
|
| 20 |
+
- zero-shot-classification
|
| 21 |
+
- object-detection
|
| 22 |
+
- depth-estimation
|
| 23 |
+
- image-classification
|
| 24 |
+
- image-segmentation
|
| 25 |
+
- image-feature-extraction
|
| 26 |
+
- image-to-3d
|
| 27 |
+
- zero-shot-object-detection
|
| 28 |
+
pretty_name: Dropjects
|
| 29 |
+
size_categories:
|
| 30 |
+
- 10K<n<1M
|
| 31 |
---
|
| 32 |
+
# Dataset Card for Dropjects
|
| 33 |
+
|
| 34 |
+
Dropjects is a synthetic stereo RGB-D object dataset, created at the Chair of Cyber-Physical Systems in Production Engineering at the Technical University of Munich.
|
| 35 |
+
It contains pose, bounding box, and segmentation masks for different sets of objects.
|
| 36 |
+
|
| 37 |
+
## Dataset Details
|
| 38 |
+
|
| 39 |
+
### Subsets
|
| 40 |
+
You can choose subsets with different sets of objects. Currently, there are the following subsets/object sets:
|
| 41 |
+
- omni (500k images): Contains ~6k objects of the [OmniObject3D dataset](https://omniobject3d.github.io/)
|
| 42 |
+
- ycbv (50k images): Contains the [YCB Video objects](https://rse-lab.cs.washington.edu/projects/posecnn/)
|
| 43 |
+
- tless (50k images): Contains the [TLESS objects](http://cmp.felk.cvut.cz/t-less/)
|
| 44 |
+
- cps (50k images): Contains the Dropjects objects (TBA)
|
| 45 |
+
|
| 46 |
+
Then you can load the dataset like this, for example all lighting conditions for the stapler in the box, with clutter
|
| 47 |
+
```
|
| 48 |
+
from datasets import load_dataset
|
| 49 |
+
|
| 50 |
+
ds = load_dataset("LukasDb/dropjects", "omni", streaming=True, trust_remote_code=True, split='test')
|
| 51 |
+
for data in ds.with_format('tensorflow'):
|
| 52 |
+
rgb = data['rgb'] # tf.uint8 Tensor, (h,w,3)
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
### Dataset Description
|
| 57 |
+
|
| 58 |
+
- **Curated by:** [email protected]
|
| 59 |
+
- **License:** CC
|
| 60 |
+
|
| 61 |
+
### Dataset Sources
|
| 62 |
+
|
| 63 |
+
<!-- Provide the basic links for the dataset. -->
|
| 64 |
+
|
| 65 |
+
- **Repository:** TBA
|
| 66 |
+
- **Paper:** TBA
|
| 67 |
+
|
| 68 |
+
## Dataset Structure
|
| 69 |
+
|
| 70 |
+
TBA
|
| 71 |
+
|
| 72 |
+
## Citation
|
| 73 |
+
|
| 74 |
+
**BibTeX:**
|
| 75 |
+
TBA
|
| 76 |
+
|
| 77 |
+
## Dataset Card Authors and Contact
|
| 78 |
+
|
| 79 |
+
Lukas Dirnberger ([email protected])
|