qizekun / ReCon

[ICML 2023] Contrast with Reconstruct: Contrastive 3D Representation Learning Guided by Generative Pretraining
https://arxiv.org/abs/2302.02318
MIT License
120 stars 13 forks source link

How to render the point cloud into rgb images? #17

Closed Amazingren closed 1 month ago

Amazingren commented 1 month ago

Hi @RunpeiDong,

Thanks for your impressive work again.

Regarding the RGB images used in your work, may I ask how you render the point cloud into RGB images?

Are there any tools you suggested or which code base you used for this?

Best regards and many thanks,

RunpeiDong commented 1 month ago

Hi @Amazingren,

we use https://github.com/qizekun/PointVisualizaiton

Please check it out. For some visualization that requires special RGB (feature attention for example) we can also write ply files and use meshlab for visualization.

Amazingren commented 1 month ago

Hi @Amazingren,

we use https://github.com/qizekun/PointVisualizaiton

Please check it out. For some visualization that requires special RGB (feature attention for example) we can also write ply files and use meshlab for visualization.

Thanks for the quick feedback, this is really a nice tool for visualization.

One more question, how do you get the shapenet_img (shown below) from the shapnet point cloud data?

image

qizekun commented 1 month ago

Hi,

We use MacOS's preview (quick look) to generate high-quality images. You can use 'qlmanage' command in bash.

Amazingren commented 1 month ago

Hi,

We use MacOS's preview (quick look) to generate high-quality images. You can use 'qlmanage' command in bash.

Cool, good to know! Thanks again!