diff --git a/README.md b/README.md index d9685a8..cd9a0cd 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,28 @@ make |`include/scene.h`|scene object. ray-scene intersection| |`include/shape.h`|shape object. ray-primitive intersection, sampling a point on the shape| +## Gallery + +### Cornell box without final gathering + +|Parameter|Value| +|:--|:--| +|number of photons|1000000| +|number of nearest neighbors|100| +|number of samples|100| + +![](img/without_final_gathering_100.png) + +### Cornell box with final gathering + +|Parameter|Value| +|:--|:--| +|number of photons|1000000| +|number of nearest neighbors|100| +|number of samples|100| + +![](img/final_gathering_100.png) + ## References * Jensen, Henrik Wann. Realistic image synthesis using photon mapping. AK Peters/crc Press, 2001. diff --git a/img/final_gathering_100.png b/img/final_gathering_100.png new file mode 100644 index 0000000..0f80342 Binary files /dev/null and b/img/final_gathering_100.png differ diff --git a/img/without_final_gathering_100.png b/img/without_final_gathering_100.png new file mode 100644 index 0000000..8941ca2 Binary files /dev/null and b/img/without_final_gathering_100.png differ