janehwu / mcc-ho

MCC-HO
MIT License
26 stars 1 forks source link

Evaluation on MOW dataset #3

Closed dqj5182 closed 4 months ago

dqj5182 commented 4 months ago

For evaluating on MOW dataset, did you use the raw 3D object mesh from MOW dataset as GT 3D object mesh? Or did you use watertight 3D object mesh as GT 3D object mesh?

I am aware that you have followed the evaluation protocol of "What's in your hand" paper. But they do not provide exact detail regarding the evaluation on MOW dataset. And if you used the raw 3D object mesh, I am curious how you handled problems from their raw mesh such as self-intersection and inverted faces.

janehwu commented 4 months ago

Hi! We used the ground truth 3D object mesh from the MOW dataset. Meaning, we did the following:

1) Download the object meshes according to the MOW repo: https://github.com/ZheC/MOW. 2) Read poses.json in the MOW repo to transform each object mesh to the correct ground truth 6DoF pose + scale.

We did not check that each object mesh is watertight (which isn't necessary for the 3D metrics computed), but I would assume most of the CAD models are watertight.

dqj5182 commented 4 months ago

Thanks for your reply! Really appreciate it.