Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hkust-vgd/riconv
Rotation Invariant Convolutions for 3D Point Clouds Deep Learning
https://github.com/hkust-vgd/riconv
convolution point-clouds rotation-invariant-convolutions segments tensorflow
Last synced: 18 days ago
JSON representation
Rotation Invariant Convolutions for 3D Point Clouds Deep Learning
- Host: GitHub
- URL: https://github.com/hkust-vgd/riconv
- Owner: hkust-vgd
- License: mit
- Created: 2019-08-27T12:23:00.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-14T02:21:38.000Z (about 5 years ago)
- Last Synced: 2024-08-01T03:45:12.928Z (4 months ago)
- Topics: convolution, point-clouds, rotation-invariant-convolutions, segments, tensorflow
- Language: Python
- Homepage: https://hkust-vgd.github.io/riconv/
- Size: 38.1 KB
- Stars: 55
- Watchers: 6
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rotation Invariant Convolutions for 3D Point Clouds Deep Learning
Zhiyuan Zhang, Binh-Son Hua, David W. Rosen, Sai-Kit Yeung
International Conference on 3D Vision (3DV) 2019
## Introduction
This is the implementation of the rotation invariant convolution and neural networks for point clouds as shown in our paper. The key idea is to build rotation invariant features and use them to build a convolution to consume a point set. For details, please refer to our [project](https://hkust-vgd.github.io/riconv/).
```
@inproceedings{zhang-riconv-3dv19,
title = {Rotation Invariant Convolutions for 3D Point Clouds Deep Learning},
author = {Zhiyuan Zhang and Binh-Son Hua and David W. Rosen and Sai-Kit Yeung},
booktitle = {International Conference on 3D Vision (3DV)},
year = {2019}
}
```## Installation
The code is written in [TensorFlow](https://www.tensorflow.org/install/) and based on [PointNet](https://github.com/charlesq34/pointnet), [PointNet++](https://github.com/charlesq34/pointnet2), and [PointCNN](https://github.com/yangyanli/PointCNN). Please follow the instruction in [PointNet++](https://github.com/charlesq34/pointnet2) to compile the customized TF operators.The code has been tested with Python 3.6, TensorFlow 1.13.2, CUDA 10.0 and cuDNN 7.3 on Ubuntu 14.04.
## Usage
### Classification
Please download the preprocessed ModelNet40 dataset [here](https://shapenet.cs.stanford.edu/media/modelnet40_ply_hdf5_2048.zip).To train a network that takes XYZ coordinates as input to classify shapes in ModelNet40:
```
python3 train_val_cls.py
```
The evaluation is performed after every training epoch.### Part Segmentation
Download the preprocessed ShapeNetPart dataset [here](https://shapenet.cs.stanford.edu/media/shapenetcore_partanno_segmentation_benchmark_v0_normal.zip).To train a network that takes XYZ coordinates as input to segments object parts:
```
python train_val_seg.py
```
The evaluation is performed after every training epoch.## License
This repository is released under MIT License (see LICENSE file for details).