3dlg-hcvc / plan2scene

Official implementation of the paper Plan2Scene.
MIT License
477 stars 61 forks source link

Vectorization process #21

Closed TheodoreGalanos closed 3 years ago

TheodoreGalanos commented 3 years ago

Hello! Thank you for sharing your work, incredible!

I am curious if you could help me understand where the vectorization happens in the code and whether this is on top of a top down image of the layout or an actual cad file.

Thanks!

madhawav commented 3 years ago

Hi @TheodoreGalanos. Thank you for your interest.

The Rent3D++ dataset we use provides us with the floorplan vector. It is in a format called scene.json which we parse using the code here. So the vectorization process is not a part of this code repository. We assume a vectorized floorplan is given.

On a related note, in the past, I have used this project for floorplan vectorization.

TheodoreGalanos commented 3 years ago

Hi @madhawav ,

Thanks that makes sense, just wanted a sanity check :) Thank you for the reference, I have tried that one before but I felt it was too hard coded to its data. I'll give it another shot.