├── README.md
└── guided_path_amisps.cpp
/README.md:
--------------------------------------------------------------------------------
1 | # multiple-importance-reweight
2 | Code for SIGGRAPH 2025 (ToG) paper "Multiple Importance Reweighting for Path Guiding"
3 |
--------------------------------------------------------------------------------
/guided_path_amisps.cpp:
--------------------------------------------------------------------------------
1 | /*
2 | This file is part of Mitsuba, a physically based rendering system.
3 |
4 | Copyright (c) 2007-2014 by Wenzel Jakob
5 | Copyright (c) 2017 by ETH Zurich, Thomas Mueller.
6 |
7 | Mitsuba is free software; you can redistribute it and/or modify
8 | it under the terms of the GNU General Public License Version 3
9 | as published by the Free Software Foundation.
10 |
11 | Mitsuba is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program. If not, see .
18 | */
19 |
20 | #include
21 | #include
22 | #include
23 | #include
24 |
25 | #include
26 | #include
27 | #include
28 | #include
29 | #include
30 | #include
31 | #include
32 | #include
33 | #include
34 | #include