• Stars
    star
    460
  • Rank 94,598 (Top 2 %)
  • Language
    Python
  • License
    MIT License
  • Created over 3 years ago
  • Updated almost 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Official implementation of the paper Plan2Scene.

Plan2Scene

Official repository of the paper:

Plan2Scene: Converting floorplans to 3D scenes

Madhawa Vidanapathirana, Qirui Wu, Yasutaka Furukawa, Angel X. Chang , Manolis Savva

[Paper, Project Page, Google Colab Demo]

Task Overview In the Plan2Scene task, we produce a textured 3D mesh of a residence from a floorplan and set of photos.

Dependencies

  1. We use a conda environment initialized as described here.
  2. Setup the command line library of Embark Studios texture-synthesis project.
    1. You can download a pre-built binary available here. Alternatively, you may build from the source.
    2. Download the seam mask available here.
    3. Rename ./conf/plan2scene/seam_correct-example.json to 'seam_correct.json' and update the paths to the texture synthesis command line library binary, and the seam mask.

Use 'code/src' as the source root when running python scripts.

export PYTHONPATH=./code/src

Data

  1. Rent3D++ dataset

    1. Download and copy the Rent3D++ dataset to the [PROJECT_ROOT]/data directory. The data organization is described here.

    2. [Optional] We have provided 3D scenes pre-populated with CAD models of objects. If you wish to re-populate these scenes using the Object Placement approach we use, follow the instructions here.

    3. To replicate our results, you should use the pre-extracted crops we provide. These crops are provided with the Rent3D++ dataset and are copied to the ./data/processed/surface_crops directory.

      [Optional] If you wish to extract new crops instead of using these provided crops, following these instructions.

    4. Select ground truth reference crops and populate photo room assignment lists.

      # Select ground truth reference crops.
      python code/scripts/plan2scene/preprocessing/generate_reference_crops.py ./data/processed/gt_reference/train ./data/input/photo_assignments/train train
      python code/scripts/plan2scene/preprocessing/generate_reference_crops.py ./data/processed/gt_reference/val ./data/input/photo_assignments/val val
      python code/scripts/plan2scene/preprocessing/generate_reference_crops.py ./data/processed/gt_reference/test ./data/input/photo_assignments/test test 
      
      # We evaluate Plan2Scene by simulating photo un-observations.
      # Generate photoroom.csv files considering different photo un-observation ratios.
      python code/scripts/plan2scene/preprocessing/generate_unobserved_photo_assignments.py ./data/processed/photo_assignments/train ./data/input/photo_assignments/train ./data/input/unobserved_photos.json train
      python code/scripts/plan2scene/preprocessing/generate_unobserved_photo_assignments.py ./data/processed/photo_assignments/val ./data/input/photo_assignments/val ./data/input/unobserved_photos.json val
      python code/scripts/plan2scene/preprocessing/generate_unobserved_photo_assignments.py ./data/processed/photo_assignments/test ./data/input/photo_assignments/test ./data/input/unobserved_photos.json test  
  2. [Optional] Stationary Textures Dataset - We use one of the following datasets to train the texture synthesis model. Not required if you are using pre-trained models.

    • Version 1: We use this dataset in our CVPR paper. Details are available here.
    • Version 2: Updated textures dataset which provides improved results on the Rent3D++ dataset. Details are available here.
  3. [Optional] Substance Mapped Textures dataset. Only used by the retrieve baseline.

Pretrained models

Pretrained models are available here.

Inference on Rent3D++ dataset

  1. Download and pre-process the Rent3D++ dataset as described in the data section.

  2. Setup a pretrained model or train a new Plan2Scene network.

  3. Synthesize textures for observed surfaces using the VGG textureness score.

    # For test data without simulating photo unobservations. (drop = 0.0)
    python code/scripts/plan2scene/preprocessing/fill_room_embeddings.py ./data/processed/texture_gen/test/drop_0.0 test --drop 0.0
    python code/scripts/plan2scene/crop_select/vgg_crop_selector.py ./data/processed/vgg_crop_select/test/drop_0.0 ./data/processed/texture_gen/test/drop_0.0 test --drop 0.0
    # Results are stored at ./data/processed/vgg_crop_select/test/drop_0.0
  4. Propagate textures to unobserved surfaces using our texture propagation network.

    python code/scripts/plan2scene/texture_prop/gnn_texture_prop.py ./data/processed/gnn_prop/test/drop_0.0 ./data/processed/vgg_crop_select/test/drop_0.0 test GNN_PROP_CONF_PATH GNN_PROP_CHECKPOINT_PATH --keep-existing-predictions --drop 0.0

    To preview results, follow the instructions below.

Previewing outputs

  1. Complete inference steps.
  2. Correct seams of predicted textures and make them tileable.
    # For test data without simulating photo unobservations.
    python code/scripts/plan2scene/postprocessing/seam_correct_textures.py ./data/processed/gnn_prop/test/drop_0.0/tileable_texture_crops ./data/processed/gnn_prop/test/drop_0.0/texture_crops test --drop 0.0
  3. Generate .scene.json files with embedded textures using embed_textures.py. A scene.json file describes the 3D geometry of a house. It can be previewed via a browser using the 'scene-viewer' of SmartScenesToolkit (You will have to clone and build the SmartScenesToolkit).
    # For test data without simulating photo unobservations.
    python code/scripts/plan2scene/postprocessing/embed_textures.py ./data/processed/gnn_prop/test/drop_0.0/archs ./data/processed/gnn_prop/test/drop_0.0/tileable_texture_crops test --drop 0.0
    # scene.json files are created in the ./data/processed/gnn_prop/test/drop_0.0/archs directory.
  4. Render .scene.json files as .pngs using render_house_jsons.py.
    • Download and build the SmartScenesToolkit.
    • Rename ./conf/render-example.json to ./conf/render.json and update its fields to point to scene-toolkit.
    • Run the following command to generate previews.
      CUDA_VISIBLE_DEVICES=0 python code/scripts/plan2scene/render_house_jsons.py ./data/processed/gnn_prop/test/drop_0.0/archs --scene-json
      # A .png file is created for each .scene.json file in the ./data/processed/gnn_prop/test/drop_0.0/archs directory.
  5. Generate qualitative result pages with previews using preview_houses.py.
    python code/scripts/plan2scene/preview_houses.py ./data/processed/gnn_prop/test/drop_0.0/previews ./data/processed/gnn_prop/test/drop_0.0/archs ./data/input/photos test --textures-path ./data/processed/gnn_prop/test/drop_0.0/tileable_texture_crops 0.0
    # Open ./data/processed/gnn_prop/test/drop_0.0/previews/preview.html

Test on Rent3D++ dataset

  1. [Optional] Download a pre-trained model or train the substance classifier used by the Subs metric. Training instructions are available here. Pre-trained weights are available here. Skip this step to omit the Subs metric.

  2. Generate overall evaluation report at 60% photo unobservations. We used this setting in paper evaluations.

    # Synthesize textures for observed surfaces using the VGG textureness score.
    # For the case: 60% (i.e. 0.6) of the photos unobserved. 
    python code/scripts/plan2scene/preprocessing/fill_room_embeddings.py ./data/processed/texture_gen/test/drop_0.6 test --drop 0.6
    python code/scripts/plan2scene/crop_select/vgg_crop_selector.py ./data/processed/vgg_crop_select/test/drop_0.6 ./data/processed/texture_gen/test/drop_0.6 test --drop 0.6
    
    # Propagate textures to un-observed surfaces using our GNN.
    # For the case: 60% (i.e. 0.6) of the photos unobserved.
    python code/scripts/plan2scene/texture_prop/gnn_texture_prop.py ./data/processed/gnn_prop/test/drop_0.6 ./data/processed/vgg_crop_select/test/drop_0.6 test GNN_PROP_CONF_PATH GNN_PROP_CHECKPOINT_PATH --keep-existing-predictions --drop 0.6
    
    # Correct seams of texture crops and make them tileable.
    # For test data where 60% of photos are unobserved.
    python code/scripts/plan2scene/postprocessing/seam_correct_textures.py ./data/processed/gnn_prop/test/drop_0.6/tileable_texture_crops ./data/processed/gnn_prop/test/drop_0.6/texture_crops test --drop 0.6
    
    # Generate overall results at 60% simulated photo unobservations.
    python code/scripts/plan2scene/test.py ./data/processed/gnn_prop/test/drop_0.6/tileable_texture_crops ./data/processed/gt_reference/test/texture_crops test
  3. Generate evaluation report for observed surfaces. No simulated unobservation of photos. We used this setting in paper evaluations.

    # Run inference on using drop=0.0.
    python code/scripts/plan2scene/preprocessing/fill_room_embeddings.py ./data/processed/texture_gen/test/drop_0.0 test --drop 0.0
    python code/scripts/plan2scene/crop_select/vgg_crop_selector.py ./data/processed/vgg_crop_select/test/drop_0.0 ./data/processed/texture_gen/test/drop_0.0 test --drop 0.0
    
    # Correct seams of texture crops and make them tileable by running seam_correct_textures.py.
    python code/scripts/plan2scene/postprocessing/seam_correct_textures.py ./data/processed/vgg_crop_select/test/drop_0.0/tileable_texture_crops ./data/processed/vgg_crop_select/test/drop_0.0/texture_crops test --drop 0.0
    
    # Generate evaluation results for observed surfaces.
    python code/scripts/plan2scene/test.py ./data/processed/vgg_crop_select/test/drop_0.0/tileable_texture_crops ./data/processed/gt_reference/test/texture_crops test
  4. Generate evaluation report for unobserved surfaces at 60% photo unobservations. We used this setting in the paper evaluations.

    # It is assumed that the user has already generated the overall report at 0.6 drop fraction.
    
    # Generate results on unobserved surfaces at 60% simulated photo unobservations.
    python code/scripts/plan2scene/test.py ./data/processed/gnn_prop/test/drop_0.6/tileable_texture_crops ./data/processed/gt_reference/test/texture_crops test --exclude-prior-predictions ./data/processed/vgg_crop_select/test/drop_0.6/texture_crops
  5. Generate evaluation report on FID metric as described here.

Inference on custom data

If you have scanned images of floorplans, you can use raster-to-vector to convert those floorplan images to a vector format. Then, follow the instructions here to create textured 3D meshes of houses.

If you have floorplan vectors in another format, you can convert them to the raster-to-vector annotation format. Then, follow the same instructions as before to create textured 3D meshes of houses. The R2V annotation format is explained with examples in the data section of the raster-to-vector repository.

Training a new Plan2Scene network

Plan2Scene consists of two trainable components, 1) the texture synthesis stage and 2) the texture propagation stage. Each stage is trained separately. The training procedure is as follows.

  1. Train the texture synthesis stage as described here.
  2. Train the texture propagation stage as described here.

Baseline Models

The baseline models are available here.

More Repositories

1

omages

We present Object Images (Omages): An homage to the classic Geometry Images.
Jupyter Notebook
236
star
2

M3DRef-CLIP

[ICCV 2023] Multi3DRefer: Grounding Text Description to Multiple 3D Objects
Python
68
star
3

paris

[ICCV 2023] Official implementation of the paper "PARIS: Part-level Reconstruction and Motion Analysis for Articulated Objects"
Python
59
star
4

cage

[CVPR 2024] Official Implementation of the paper "CAGE: Controllable Articulation GEneration"
Python
58
star
5

hssd

Code repository for the Habitat Synthetic Scenes Dataset (HSSD) paper.
Python
56
star
6

mirror3d

Python
40
star
7

DuoduoCLIP

Jupyter Notebook
34
star
8

minsu3d

MINSU3D: MinkowskiEngine-powered Scene Understanding in 3D
Python
32
star
9

OPD

[ECCV 2022, Oral] OPD: Single-view 3D Openable Part Detection
Python
30
star
10

tricolo

[WACV 2024] TriCoLo: Trimodal Contrastive Loss for Text to Shape Retrieval
Python
21
star
11

smc

Official Implementation of the paper "SceneMotifCoder: Example-driven Visual Program Learning for Generating 3D Object Arrangements"
Python
18
star
12

3dhoi

[3DV 2022] Articulated 3D Human-Object Interactions from RGB Videos: An Empirical Analysis of Approaches and Challenges
Python
17
star
13

OPDMulti

Python
16
star
14

r3ds

Official repository of the paper "R3DS: Reality-linked 3D Scenes for Panoramic Scene Understanding"
16
star
15

mopa

Python
15
star
16

r2v-to-plan2scene

Convert raster-to-vector floorplan vectors to Plan2Scene input formats.
Python
15
star
17

generalizing_shape_retrieval

Official Implementation of the paper "Generalizing Single-View 3D Shape Retrieval to Occlusions and Unseen Objects", 3DV 2024
Python
14
star
18

ANCSH-pytorch

Pytorch reimplementation for the paper "Category-Level Articulated Object Pose Estimation"
Python
14
star
19

tt3dstar

8
star
20

bioscan-clip

Python
5
star
21

OPDPN

OPDPN baseline for "OPD: Single-view 3D Openable Part Detection"
Python
2
star
22

3DVQA

Python
2
star
23

ENet-ScanNet

Helper tools for extracting and projecting ENet features to ScanNet pointclouds.
Python
1
star