├── LICENSE ├── README.md ├── dataset.py ├── images ├── ModelNet40.png └── PointNet.png ├── model.py ├── models ├── pointnet_cls.py ├── pointnet_part_seg.py ├── pointnet_sem_seg.py ├── pointnet_utils.py └── readme.md ├── provider.py ├── requirements.txt ├── test.py └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/README.md -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/dataset.py -------------------------------------------------------------------------------- /images/ModelNet40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/images/ModelNet40.png -------------------------------------------------------------------------------- /images/PointNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/images/PointNet.png -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/model.py -------------------------------------------------------------------------------- /models/pointnet_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/models/pointnet_cls.py -------------------------------------------------------------------------------- /models/pointnet_part_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/models/pointnet_part_seg.py -------------------------------------------------------------------------------- /models/pointnet_sem_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/models/pointnet_sem_seg.py -------------------------------------------------------------------------------- /models/pointnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/models/pointnet_utils.py -------------------------------------------------------------------------------- /models/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/models/readme.md -------------------------------------------------------------------------------- /provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/provider.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPones/PointNet-with-ModleNet40/HEAD/train.py --------------------------------------------------------------------------------