PyTorch3D
PyTorch3D
This Facebook AI Research's PyTorch 3D graphics library.
The main features are a mesh and point cloud renderer.
Install
See INSTALL.md. I've only been able to get it to work on Linux.
- Make sure you have CUDA, CUDNN, PyTorch installed
pip install 'git+https://github.com/facebookresearch/pytorch3d.git'
Usage
Point Cloud Renderer
See render_colored_points.ipynb. You can run this tutorial in Colab using this link or the Open in Colab' extension.
To implement custom cameras (e.g. Fisheye, 360), you can write your own custom PointsRasterizer. See /pytorch3d/renderer/points/rasterizer.py for the default PointsRasterizer.
Specifically, you can change the transform function to a custom function which calculates screen coordinates from world coordinates.