This project aims at implementing a raytracing approach for photorealistic rendering
Ultimate goal(Cycles render) | V0 | Current |
---|---|---|
![]() |
![]() |
![]() |
This project uses different dependencies :
- Assimp : Used to load model files to render
- Eigen : Matrice and vector manipulation
- Stbipp : Image I/O
Whole install instructions :
git clone https://github.com/Rodousse/PhotonMappingImplementation.git
# Third party install
cd third_party
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX="Wherever/you/want" ..
make
# Project build
cd ../../project
mkdir build
cd build
cmake -DCMAKE_PREFIX_PATH="thirdParty/install/path/" ..
make