Update README.md
Browse files
README.md
CHANGED
|
@@ -221,12 +221,47 @@ Manycore entity uses metadata of the following form:
|
|
| 221 |
|
| 222 |
### Part-level annotations
|
| 223 |
|
| 224 |
-
Each `annotations/part_<id>.json` contains
|
|
|
|
| 225 |
|
| 226 |
-
|
| 227 |
-
|
| 228 |
-
|
| 229 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 230 |
|
| 231 |
`kinematic_info.motion_info.dependency` lists the part IDs that move together.
|
| 232 |
For movable parts, `B` contains prismatic parameters and `C` contains revolute
|
|
|
|
| 221 |
|
| 222 |
### Part-level annotations
|
| 223 |
|
| 224 |
+
Each `annotations/part_<id>.json` contains the part description, intrinsic
|
| 225 |
+
physical properties, motion type, joint parameters, and motion dependency:
|
| 226 |
|
| 227 |
+
```json
|
| 228 |
+
{
|
| 229 |
+
"index": {
|
| 230 |
+
"type_name": "default",
|
| 231 |
+
"entity": "UPB_00000000",
|
| 232 |
+
"label": "3"
|
| 233 |
+
},
|
| 234 |
+
"part_level": {
|
| 235 |
+
"part_name": "Front Seat Trim Bar",
|
| 236 |
+
"affordance": 2,
|
| 237 |
+
"graspable": false,
|
| 238 |
+
"basic_description": "Slim ABS trim piece at the front edge of the seat.",
|
| 239 |
+
"functional_description": "Covers a seam and provides a finished edge.",
|
| 240 |
+
"movement_description": "Revolute; attached to the seat base.",
|
| 241 |
+
"grasp_description": "Grasp the handle of the bar."
|
| 242 |
+
},
|
| 243 |
+
"basic_info": {
|
| 244 |
+
"material": "metal/Steel",
|
| 245 |
+
"density": 7.85,
|
| 246 |
+
"young": 200.0,
|
| 247 |
+
"hardness": 180.0,
|
| 248 |
+
"poisson": 0.3,
|
| 249 |
+
"friction": 0.45
|
| 250 |
+
},
|
| 251 |
+
"kinematic_info": {
|
| 252 |
+
"motion_types": ["C"],
|
| 253 |
+
"motion_info": {
|
| 254 |
+
"dependency": [3],
|
| 255 |
+
"C": {
|
| 256 |
+
"axis": [-1.0, 0.0, 0.0],
|
| 257 |
+
"pos": [-0.02277967, 0.38144422, -0.02326505],
|
| 258 |
+
"range": [0.0, 0.785],
|
| 259 |
+
"damping": 0.03
|
| 260 |
+
}
|
| 261 |
+
}
|
| 262 |
+
}
|
| 263 |
+
}
|
| 264 |
+
```
|
| 265 |
|
| 266 |
`kinematic_info.motion_info.dependency` lists the part IDs that move together.
|
| 267 |
For movable parts, `B` contains prismatic parameters and `C` contains revolute
|