Update README.md
Browse files
README.md
CHANGED
@@ -38,8 +38,8 @@ gelsight_youngs_modulus_dataset
|
|
38 |
βββ grasp={grasp_number}
|
39 |
βββ augmentation={grasp_number}
|
40 |
βββ RGB.pkl
|
41 |
-
βββ RGB_markers.pkl
|
42 |
βββ depth.pkl
|
|
|
43 |
βββ depth_markers.pkl
|
44 |
βββ forces.pkl
|
45 |
βββ widths.pkl
|
@@ -50,23 +50,23 @@ gelsight_youngs_modulus_dataset
|
|
50 |
In the OBJECT_NAME folder, metadata for each object is provided in a .json file, including the object's shape, material, Young's modulus, and Shore hardness.
|
51 |
```
|
52 |
metadata = {
|
53 |
-
'object_name':
|
54 |
-
'youngs_modulus':
|
55 |
-
'material':
|
56 |
-
'shape':
|
57 |
-
'shore_00_hardness':
|
58 |
-
'shore_A_hardness':
|
59 |
-
'shore_D_hardness':
|
60 |
-
'used_in_training':
|
61 |
}
|
62 |
```
|
63 |
|
64 |
In the AUGMENTATION_NUMBER folder, data is provided in .pkl files. You will find the following named conventions...
|
65 |
-
- Tactile RGB images (without markers):
|
66 |
-
- Tactile depth images (without markers):
|
67 |
-
- Tactile RGB images (with markers):
|
68 |
-
- Tactile depth images (with markers):
|
69 |
-
- Sampled grasping contact forces:
|
70 |
-
- Sampled gripper widths:
|
71 |
-
- Elastic analytical model estimate:
|
72 |
-
- Hertzian analytical model estimate:
|
|
|
38 |
βββ grasp={grasp_number}
|
39 |
βββ augmentation={grasp_number}
|
40 |
βββ RGB.pkl
|
|
|
41 |
βββ depth.pkl
|
42 |
+
βββ RGB_markers.pkl
|
43 |
βββ depth_markers.pkl
|
44 |
βββ forces.pkl
|
45 |
βββ widths.pkl
|
|
|
50 |
In the OBJECT_NAME folder, metadata for each object is provided in a .json file, including the object's shape, material, Young's modulus, and Shore hardness.
|
51 |
```
|
52 |
metadata = {
|
53 |
+
'object_name': {object_name}, # [str]
|
54 |
+
'youngs_modulus': 0.0, # [Pa]
|
55 |
+
'material': '', # [str]
|
56 |
+
'shape': '', # [str]
|
57 |
+
'shore_00_hardness': None, # [/]
|
58 |
+
'shore_A_hardness': None, # [/]
|
59 |
+
'shore_D_hardness': None, # [/]
|
60 |
+
'used_in_training': True # [bool]
|
61 |
}
|
62 |
```
|
63 |
|
64 |
In the AUGMENTATION_NUMBER folder, data is provided in .pkl files. You will find the following named conventions...
|
65 |
+
- Tactile RGB images (without markers): `RGB.pkl`
|
66 |
+
- Tactile depth images (without markers): `depth.pkl`
|
67 |
+
- Tactile RGB images (with markers): `RGB_markers.pkl`
|
68 |
+
- Tactile depth images (with markers): `depth_markers.pkl`
|
69 |
+
- Sampled grasping contact forces: `forces.pkl`
|
70 |
+
- Sampled gripper widths: `widths.pkl`
|
71 |
+
- Elastic analytical model estimate: `elastic_estimate.pkl`
|
72 |
+
- Hertzian analytical model estimate: `hertz_estimate.pkl`
|