qq456cvb commited on
Commit
a297c2f
·
verified ·
1 Parent(s): c9a244a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +78 -0
README.md ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - keypoint-detection
5
+ language:
6
+ - en
7
+ tags:
8
+ - 3d
9
+ - point-cloud
10
+ - shapenet
11
+ - keypoints
12
+ pretty_name: KeypointNet
13
+ size_categories:
14
+ - 1K<n<10K
15
+ ---
16
+
17
+ # KeypointNet: A Large-Scale 3D Keypoint Dataset (CVPR 2020)
18
+
19
+ KeypointNet is a large-scale and diverse 3D keypoint dataset that contains **83,231 keypoints** and **8,329 3D models** from **16 object categories**, aggregated from numerous human annotations on ShapeNet models.
20
+
21
+ - Paper: [KeypointNet: A Large-Scale 3D Keypoint Dataset Aggregated From Numerous Human Annotations (CVPR 2020)](https://openaccess.thecvf.com/content_CVPR_2020/html/You_KeypointNet_A_Large-Scale_3D_Keypoint_Dataset_Aggregated_From_Numerous_Human_CVPR_2020_paper.html)
22
+ - Code and benchmarks: https://github.com/qq456cvb/KeypointNet
23
+ - Interactive explorer: http://qq456cvb.github.io/keypointnet/explore/
24
+
25
+ ## Contents
26
+
27
+ - `annotations/` — keypoint annotations as one JSON file per category, plus `all.json` with every category combined.
28
+ - `pcds.zip` — sampled colored point clouds (2,048 points) for each ShapeNet model, as `.pcd` files organized by `class_id/model_id.pcd`.
29
+ - `ShapeNetCore.v2.ply.zip` — colored triangle meshes (`.ply` with diffuse-texture vertex colors) for the annotated ShapeNet models.
30
+ - `knife_misaligned.txt` — knives that are misaligned (x-axis flipped) in the original ShapeNet.
31
+
32
+ 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).
33
+
34
+ ## Annotation Format
35
+
36
+ Each category JSON is a list of annotated models:
37
+
38
+ ```javascript
39
+ [
40
+ {
41
+ "class_id": "03001627", // WordNet id
42
+ "model_id": "88382b877be91b2a572f8e1c1caad99e",
43
+ "keypoints": [
44
+ {
45
+ "xyz": [0.16, 0.1, 0.1], // keypoint coordinate
46
+ "rgb": [255, 255, 255], // keypoint color, uint8
47
+ "semantic_id": 0, // id of semantic meaning (consistent within a category)
48
+ "pcd_info": { "point_index": 0 }, // index on the corresponding point cloud
49
+ "mesh_info": { "face_index": 0, "face_uv": [0.2, 0.4, 0.4] } // barycentric coords on the mesh face
50
+ }
51
+ ],
52
+ "symmetries": {
53
+ "reflection": [ { "kp_indexes": [0, 1] } ],
54
+ "rotation": [
55
+ {
56
+ "kp_indexes": [0, 1, 2, 3],
57
+ "is_circle": true,
58
+ "circle": { "center": [0.2, 0.5, 0.2], "radius": 0.32, "normal": [0, 1.0, 0] }
59
+ }
60
+ ]
61
+ }
62
+ }
63
+ ]
64
+ ```
65
+
66
+ Train/val/test splits and visualization/benchmark code are available in the [GitHub repository](https://github.com/qq456cvb/KeypointNet).
67
+
68
+ ## Citation
69
+
70
+ ```bibtex
71
+ @inproceedings{you2020keypointnet,
72
+ title={KeypointNet: A Large-Scale 3D Keypoint Dataset Aggregated From Numerous Human Annotations},
73
+ author={You, Yang and Lou, Yujing and Li, Chengkun and Cheng, Zhoujun and Li, Liangwei and Ma, Lizhuang and Lu, Cewu and Wang, Weiming},
74
+ booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
75
+ pages={13647--13656},
76
+ year={2020}
77
+ }
78
+ ```