- PyTorch implementation of PointNet++ based on sshaoshuai/Pointnet2.PyTorch.
- Supports newer PyTorch versions (>1.0)
- Linux (tested on Ubuntu 18.04)
- Python 3.6+
- PyTorch 1.8
First, install ninja:
sudo apt-get install ninja-build
Then install pytorch:
pip install torch
Install this library by running the following command:
pip install .
- SceneCollisionNet: Predicts collisions from raw point clouds.
- charlesq34/pointnet2: Paper author and official code repo.
- erikwijmans/Pointnet2_PyTorch: Initial work of PyTorch implementation of PointNet++.
- sshaoshuai/Pointnet2.PyTorch: Faster CUDA implementation of Pointnet++.