oakink / OakInk

[CVPR 2022] OakInk: A Large-scale Knowledge Repository for Understanding Hand-Object Interaction
https://oakink.net
MIT License
94 stars 4 forks source link

Question about contactpose model #7

Closed tianhaowuhz closed 1 year ago

tianhaowuhz commented 1 year ago

Hi, recetnly I am trying to use the dataset in simulator. However, I found the data for contactpose only has pointcloud, and no mesh which can not be used in simulator to load object. I also tried to match the original contactpose object model, but it has slight rotation which is hard to match exactly. Thus, I am wondering can you public the processed object model related to contactpose, Thank you so much!

tianhaowuhz commented 1 year ago

I also tried to convert pointcloud to mesh. However, some of the mesh quality is very bad.

lixiny commented 1 year ago

Hi, the contactpose object models we provided (in OakInkObjectsV2.zip) are triangle meshes.

for example: the object model: OakInkObjectsV2/contactpose_camera/align/camera.ply can be loaded via MeshLab as:

截屏2023-06-07 21 32 41

tianhaowuhz commented 1 year ago

I am sorry I didn't check that, thank you for your reply!

tianhaowuhz commented 1 year ago

By the way, what is the difference between "algin" and "algin ds"?

lixiny commented 1 year ago

The align model aligns the objects' canonical system within a certain OakInk category. The align_ds model downsamples the original mesh of an object to reduce the number of vertices and the surface for quicker computing. We have ensured that the downsampled model is watertight, thanks to ManifoldPlus. Therefore, it can be used to compute the SDF, but it's worth noting that some of the downsampled objects may have different geometry compared to the original ones.

tianhaowuhz commented 1 year ago

Thank you so much !