--- license: mit task_categories: - keypoint-detection language: - en tags: - 3d - point-cloud - shapenet - keypoints pretty_name: KeypointNet size_categories: - 1K/.pcd`. - `ShapeNetCore.v2.ply/` — colored triangle meshes (`.ply` with diffuse-texture vertex colors) for the annotated ShapeNet models, one file per model at `ShapeNetCore.v2.ply//.ply`. - `knife_misaligned.txt` — knives that are misaligned (x-axis flipped) in the original ShapeNet. Covered categories: airplane (1022 models), bathtub (492), bed (146), bottle (380), cap (38), car (1002), chair (999), guitar (697), helmet (90), knife (270), laptop (439), motorcycle (298), mug (198), skateboard (141), table (1124) and vessel (910). ## Annotation Format Each category JSON is a list of annotated models: ```javascript [ { "class_id": "03001627", // WordNet id "model_id": "88382b877be91b2a572f8e1c1caad99e", "keypoints": [ { "xyz": [0.16, 0.1, 0.1], // keypoint coordinate "rgb": [255, 255, 255], // keypoint color, uint8 "semantic_id": 0, // id of semantic meaning (consistent within a category) "pcd_info": { "point_index": 0 }, // index on the corresponding point cloud "mesh_info": { "face_index": 0, "face_uv": [0.2, 0.4, 0.4] } // barycentric coords on the mesh face } ], "symmetries": { "reflection": [ { "kp_indexes": [0, 1] } ], "rotation": [ { "kp_indexes": [0, 1, 2, 3], "is_circle": true, "circle": { "center": [0.2, 0.5, 0.2], "radius": 0.32, "normal": [0, 1.0, 0] } } ] } } ] ``` Train/val/test splits and visualization/benchmark code are available in the [GitHub repository](https://github.com/qq456cvb/KeypointNet). ## Citation ```bibtex @inproceedings{you2020keypointnet, title={KeypointNet: A Large-Scale 3D Keypoint Dataset Aggregated From Numerous Human Annotations}, author={You, Yang and Lou, Yujing and Li, Chengkun and Cheng, Zhoujun and Li, Liangwei and Ma, Lizhuang and Lu, Cewu and Wang, Weiming}, booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)}, pages={13647--13656}, year={2020} } ```