Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 639 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 639 Bytes

PointCloudRendering

A point cloud renderer using splatting method.


Build Instructions (Windows)

  1. Make sure you have installed Python and CMake.

  2. Install poetry

pip install poetry
  1. Activate virtual environment in the project folder:
poetry shell
poetry update
  1. Install Conan dependencies:
conan install . -sbuild_type=Debug -of=out/build/deps/conan/ --build=missing
  1. 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