diff --git a/README.md b/README.md index 32a329e12..158d11528 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [http://www.gsplat.studio/](http://www.gsplat.studio/) -gsplat is an open-source library for CUDA accelerated rasterization of gaussians with python bindings. It is inspired by the SIGGRAPH paper [3D Gaussian Splatting for Real-Time Rendering of Radiance Fields](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/), but we’ve made gsplat even faster, more memory efficient, and with a growing list of new features! Check our [webpage](https://docs.gsplat.studio/latest/) for more details +gsplat is an open-source library for CUDA accelerated rasterization of gaussians with python bindings. It is inspired by the SIGGRAPH paper [3D Gaussian Splatting for Real-Time Rendering of Radiance Fields](https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/), but we’ve made gsplat even faster, more memory efficient, and with a growing list of new features! Check our [webpage](https://docs.gsplat.studio/main/) for more details ## Installation @@ -25,7 +25,7 @@ pip install git+https://github.com/nerfstudio-project/gsplat.git ## Evaluation -This repo comes with a standalone script that reproduces the official Gaussian Splatting with exactly the same performance on PSNR, SSIM, LPIPS, and converged number of Gaussians. Powered by gsplat’s efficient CUDA implementation, the training takes up to **4x less GPU memory** with up to **2x less time** to finish than the official implementation. Full report can be found [here](https://docs.gsplat.studio/latest/tests/eval.html). +This repo comes with a standalone script that reproduces the official Gaussian Splatting with exactly the same performance on PSNR, SSIM, LPIPS, and converged number of Gaussians. Powered by gsplat’s efficient CUDA implementation, the training takes up to **4x less GPU memory** with up to **2x less time** to finish than the official implementation. Full report can be found [here](https://docs.gsplat.studio/main/tests/eval.html). ```bash # under examples/ @@ -38,9 +38,9 @@ bash benchmark.sh We provide a set of examples to get you started! Below you can find the details about the examples (requires to install some exta dependences via `pip install -r examples/requirements.txt`) -- [Train a 3D Gaussian splatting model on a COLMAP capture.](https://docs.gsplat.studio/latest/examples/colmap.html) -- [Fit a 2D image with 3D Gaussians.](https://docs.gsplat.studio/latest/examples/image.html) -- [Render a large scene in real-time.](https://docs.gsplat.studio/latest/examples/large_scale.html) +- [Train a 3D Gaussian splatting model on a COLMAP capture.](https://docs.gsplat.studio/main/examples/colmap.html) +- [Fit a 2D image with 3D Gaussians.](https://docs.gsplat.studio/main/examples/image.html) +- [Render a large scene in real-time.](https://docs.gsplat.studio/main/examples/large_scale.html) ## Development and Contribution