breezexian commited on
Commit
90470ad
·
verified ·
1 Parent(s): 760559e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -5
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
- - `index`: entity and part identifiers;
227
- - `part_level`: part name, descriptions, affordance, and graspability;
228
- - `basic_info`: material and intrinsic physical properties;
229
- - `kinematic_info`: motion type, dependency group, and joint parameters.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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