Find a file
2020-04-27 18:46:34 -04:00
cpp_wrappers Corrections 2020-04-27 18:43:55 -04:00
datasets Corrections 2020-04-27 18:01:40 -04:00
doc Corrections 2020-04-27 18:20:35 -04:00
kernels Corrections 2020-04-27 18:01:40 -04:00
models Corrections 2020-04-27 18:01:40 -04:00
utils Corrections 2020-04-27 18:01:40 -04:00
INSTALL.md Corrections 2020-04-27 18:46:34 -04:00
plot_convergence.py Corrections 2020-04-27 18:01:40 -04:00
README.md Corrections 2020-04-27 18:20:35 -04:00
test_models.py Corrections 2020-04-27 18:01:40 -04:00
train_ModelNet40.py Corrections 2020-04-27 18:01:40 -04:00
train_S3DIS.py Corrections 2020-04-27 18:01:40 -04:00
train_SemanticKitti.py Corrections 2020-04-27 18:01:40 -04:00
visualize_deformations.py Corrections 2020-04-27 18:01:40 -04:00

Intro figure

Created by Hugues THOMAS

Introduction

This repository contains the implementation of Kernel Point Convolution (KPConv) in PyTorch.

KPConv is also available in Tensorflow (original but older implementation)

KPConv is a point convolution operator presented in our ICCV2019 paper (arXiv). If you find our work useful in your research, please consider citing:

@article{thomas2019KPConv,
    Author = {Thomas, Hugues and Qi, Charles R. and Deschaud, Jean-Emmanuel and Marcotegui, Beatriz and Goulette, Fran{\c{c}}ois and Guibas, Leonidas J.},
    Title = {KPConv: Flexible and Deformable Convolution for Point Clouds},
    Journal = {Proceedings of the IEEE International Conference on Computer Vision},
    Year = {2019}
}

Installation

This implementation has been tested on Ubuntu 18.04 and Windows 10. Details are provided in INSTALL.md.

Experiments

We provide scripts for three experiments: ModelNet40, S3DIS and SemanticKitti. The instructions to run these experiments are in the doc folder.

  • Object Classification: Instructions to train KP-CNN on an object classification task (Modelnet40).

  • Scene Segmentation: Instructions to train KP-FCNN on a scene segmentation task (S3DIS).

  • SLAM Segmentation: Instructions to train KP-FCNN on a slam segmentation task (SemanticKitti).

  • New Dataset: Instructions to train KPConv networks on your own data.

  • Pretrained models: We provide pretrained weights and instructions to load them.

  • Visualization scripts: For now only one visualization script has been implemented: the kernel deformations display.

TODO: Guide for these experiments

Acknowledgment

Our code uses the nanoflann library.

License

Our code is released under MIT License (see LICENSE file for details).

Updates

  • 27/04/2020: Initial release.