Skip to content

Latest commit

 

History

History

svr

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Single View Reconstruction

This repository contains the source code of single view reconstruction and of the papers:

  1. Snowflake Point Deconvolution for Point Cloud Completion and Generation with Skip-Transformer (TPAMI 2023)

  2. SnowflakeNet: Point Cloud Completion by Snowflake Point Deconvolution with Skip-Transformer (ICCV 2021, Oral)

Intro pic

Datasets

We follow 3DAttriFlow and evaluate the single view reconstruction quality of SPD on the ShapeNet dataset.

Getting Started

To use our code, make sure that the environment and PyTorch extensions are installed according to the instructions in the main page. Then modify the dataset path in the configuration files.

Training

To train a svr model from scratch, run:

python train_svr.py -c cfgs/SVR.yaml -gpu 0

Evaluation

To evaluate a pre-trained model, first specify the "load_model" path in cfgs/SVR.yaml, then run:


python val_svr.py -c cfgs/SVR.yaml -gpu 0

Acknowledgements

This repo is based on:

We thank the authors for their great job!