DualityAI-RebekahBogdanoff commited on
Commit
959880d
·
verified ·
1 Parent(s): cc6a43d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +80 -0
README.md CHANGED
@@ -24,3 +24,83 @@ configs:
24
  - split: test
25
  path: data/test-*
26
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  - split: test
25
  path: data/test-*
26
  ---
27
+ # Pose Estimation Dataset
28
+
29
+ ## Overview
30
+ [Duality.ai ](https://www.duality.ai/edu) just released a 1000 image dataset for pose estimation, including images, masks, and labels -- and it's 100% free!
31
+
32
+ Just [create an EDU account here](https://falcon.duality.ai/auth/sign-up).
33
+
34
+ This HuggingFace dataset is a 20 image and label sample divided into train and val folders, but you can get the rest at no cost by [creating a FalconCloud account](https://falcon.duality.ai/auth/sign-up). Once you verify your email, the link will redirect you to the dataset page.
35
+
36
+ What makes this dataset unique, useful, and capable of bridging the Sim2Real gap?
37
+ - The digital twins are not generated by AI, but instead crafted by 3D artists to be INDISTINGUISHABLE to the model from the physical-world objects. This allows the training from this data to transfer into real-world applicability
38
+ - The simulation software, called FalconEditor, can easily create thousands of images with varying lighting, posing, occlusions, backgrounds, camera positions, and more. This enables robust model training.
39
+ - The labels are created along with the data, and specifically the pose-estimation labels are easier to generate in simulation than in the physical world. This not only saves large amounts of time, but also ensures the labels are incredibly accurate and reliable.
40
+
41
+
42
+
43
+
44
+ This dataset is designed for pose estimation tasks, focusing on determining the position and orientation of an object in 3D space. The dataset includes images, masks, and labels for both training and validation, making it suitable for machine learning applications in 3D object tracking and computer vision. This dataset was generated using Duality.ai simulation software: FalconEditor. [Try FalconEditor today](https://falcon.duality.ai/secure/documentation/pose-colab?sidebarMode=learn) to create data to be used for pose estimation on different objects.
45
+
46
+ ## Dataset Structure
47
+
48
+ The dataset has the following structure:
49
+ ```plaintext
50
+ pose_estimation_dataset/
51
+ |-- train/
52
+ | |-- images/
53
+ | | |-- 000000000.png
54
+ | | |-- 000000001.png
55
+ | | |-- ...
56
+ | |-- labels/
57
+ | | |-- 000000000.txt
58
+ | | |-- 000000001.txt
59
+ | | |-- ...
60
+ | |-- masks/
61
+ | |-- 000000000.png
62
+ | |-- 000000001.png
63
+ | |-- ...
64
+ |-- val/
65
+ |-- images/
66
+ | |-- 000000000.png
67
+ | |-- 000000001.png
68
+ | |-- ...
69
+ |-- labels/
70
+ | |-- 000000000.txt
71
+ | |-- 000000001.txt
72
+ | |-- ...
73
+ |-- masks/
74
+ |-- 000000000.png
75
+ |-- 000000001.png
76
+ |-- ...
77
+ ```
78
+
79
+ ### Components
80
+ 1. **Images**: RGB images of the object in `.jpg` format.
81
+ 2. **Labels**: Text files (`.txt`) containing 3D pose annotations. Each label file corresponds to an image and contains the following information:
82
+ - Three position values `[x, y, z]` representing the object's location in 3D space.
83
+ - Four quaternion values `[qx, qy, qz, qw]` representing the object's orientation in 3D space.
84
+ 3. **Masks**: Binary masks (`.jpg`) highlighting the object’s silhouette in the image.
85
+
86
+ ## Usage
87
+
88
+ To use this dataset, load the images, labels, and masks for your pose estimation pipeline. Ensure that the corresponding image, label, and mask files share the same base filename.
89
+
90
+ ### Example
91
+ If you have `train/images/image_1.png`, the corresponding files will be:
92
+ - `train/labels/image_1.txt`
93
+ - `train/masks/image_1.png`
94
+
95
+ ### Label Format
96
+ Each `.txt` label file contains a single line in the following format:
97
+ ```plaintext
98
+ x y z qx qy qz qw
99
+ ```
100
+ Example:
101
+ ```plaintext
102
+ 0.12 0.45 0.78 0.0 0.707 0.0 0.707
103
+ ```
104
+
105
+ ## Licensing
106
+ license: apache-2.0