AllenXiangX / SPD_jittor

(TPAMI 2023) Snowflake Point Deconvolution for Point Cloud Completion and Generation with Skip-Transformer, implemented in Jittor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Peng Xiang*, Xin Wen*, Yu-Shen Liu, Yan-Pei Cao, Pengfei Wan, Wen Zheng, Zhizhong Han

Intro pic

[SPD]

This repository contains the Jittor implementation 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)

The Jittor implementation of SPD on different tasks. Compared to the PyTorch implementation, the Jittor version has higher training speed (green denotes faster training speed under the same experimental settings):

task dataset PyTorch Jittor
Completion PCN 10min 41s $\textbf{\color{YellowGreen}9min 46s}$
Completion Completion3D 6min 0s $\textbf{\color{YellowGreen}4min 50s}$
Completion ShapeNet-34/21 3min 35s $\textbf{\color{YellowGreen}3min 29s}$
AE ShapeNet 1min 6s $\textbf{\color{YellowGreen}56s}$
VAE ShapeNet 1min 9s $\textbf{\color{YellowGreen}57s}$
Up-sampling PUGAN 2min 34s $\textbf{\color{YellowGreen}2min 2s}$
SVR ShapeNet 27s $\textbf{\color{YellowGreen}23s}$

[ SnowflakeNet | SPD | IEEE Xplore | Jittor ]

Most existing point cloud completion methods suffer from the discrete nature of point clouds and the unstructured prediction of points in local regions, which makes it difficult to reveal fine local geometric details. To resolve this issue, we propose SnowflakeNet with snowflake point deconvolution (SPD) to generate complete point clouds. SPD models the generation of point clouds as the snowflake-like growth of points, where child points are generated progressively by splitting their parent points after each SPD. Our insight into the detailed geometry is to introduce a skip-transformer in the SPD to learn the point splitting patterns that can best fit the local regions. The skip-transformer leverages attention mechanism to summarize the splitting patterns used in the previous SPD layer to produce the splitting in the current layer. The locally compact and structured point clouds generated by SPD precisely reveal the structural characteristics of the 3D shape in local patches, which enables us to predict highly detailed geometries. Moreover, since SPD is a general operation that is not limited to completion, we explore its applications in other generative tasks, including point cloud auto-encoding, generation, single image reconstruction, and upsampling. Our experimental results outperform state-of-the-art methods under widely used benchmarks.

[Citation]

@ARTICLE{xiang2022SPD,
  author={Xiang, Peng and Wen, Xin and Liu, Yu-Shen and Cao, Yan-Pei and Wan, Pengfei and Zheng, Wen and Han, Zhizhong},
  journal={IEEE Transactions on Pattern Analysis and Machine Intelligence}, 
  title={Snowflake Point Deconvolution for Point Cloud Completion and Generation with Skip-Transformer}, 
  year={2022},
  volume={},
  number={},
  pages={1-18},
  doi={10.1109/TPAMI.2022.3217161}}

@inproceedings{xiang2021snowflakenet,
  title={{SnowflakeNet}: Point Cloud Completion by Snowflake Point Deconvolution with Skip-Transformer},
  author={Xiang, Peng and Wen, Xin and Liu, Yu-Shen and Cao, Yan-Pei and Wan, Pengfei and Zheng, Wen and Han, Zhizhong},
  booktitle={Proceedings of the IEEE International Conference on Computer Vision (ICCV)},
  year={2021}
}

[Getting Started]

Build Environment

# python environment
$ cd SnowflakeNet
$ conda create -n spd_jittor python=3.7
$ conda activate spd_jittor
$ pip3 install -r requirements.txt

# Jittor
$ sudo apt install python3.7-dev libomp-dev
$ python3.7 -m pip install jittor

Visualization of point splitting paths

We provide visualization code for point splitting paths in the visualization folder.

Acknowledgements

Some of the code of this repo is borrowed from:

We thank the authors for their great job!

License

This project is open sourced under MIT license.

About

(TPAMI 2023) Snowflake Point Deconvolution for Point Cloud Completion and Generation with Skip-Transformer, implemented in Jittor

License:MIT License


Languages

Language:Python 100.0%