A point cloud renderer using splatting method.
-
Make sure you have installed
Python
andCMake
. -
Install
poetry
pip install poetry
- Activate virtual environment in the project folder:
poetry shell
poetry update
- Install Conan dependencies:
conan install . -sbuild_type=Debug -of=out/build/deps/conan/ --build=missing
- Build using CMake:
cd out/build
cmake ../.. -G "Visual Studio 17 2022" -DCMAKE_TOOLCHAIN_FILE="deps\conan\conan_toolchain.cmake" -DCMAKE_BUILD_TYPE=Debug
cmake --build . --config Debug