pqhieu / jsis3d

[CVPR'19] JSIS3D: Joint Semantic-Instance Segmentation of 3D Point Clouds
https://pqhieu.com/research/cvpr19/
MIT License
176 stars 36 forks source link

coords and points #18

Closed LiDaiY closed 4 years ago

LiDaiY commented 4 years ago

Hello, I am confused about the 'coords' and 'points'. I thought 'points' contain the XYZ, RGB and Normal. But I don't konw what does 'coords' represent. Looking forward your reply.

pqhieu commented 4 years ago

Hi @LiDaiY,

coords are the global coordinates of a scene, while points are the normalized coordinates in a block (in the range of [0, 1]). Later the method merges all of the blocks in a scene together for the MV-CRF step, hence it needs the global coordinates.

LiDaiY commented 4 years ago

Thanks for your reply. I found data preprocessing scripts are in 'scripts' folders. I think I should read these codes for better understanding the data.