1 |
+ |
/* RCSid $Id$ */ |
2 |
+ |
|
3 |
|
/* |
4 |
|
================================================================== |
5 |
|
Bias compensation for photon density estimates |
8 |
|
R. Schregle, "Bias Compensation for Photon Maps", |
9 |
|
Computer Graphics Forum, v22:n4, pp. 729-742, Dec. 2003. |
10 |
|
|
11 |
< |
Roland Schregle (roland.schregle@{hslu.ch, gmail.com}) |
12 |
< |
(c) Fraunhofer Institute for Solar Energy Systems, |
11 |
< |
Lucerne University of Applied Sciences & Arts |
11 |
> |
Roland Schregle ([email protected]) |
12 |
> |
(c) Fraunhofer Institute for Solar Energy Systems |
13 |
|
================================================================== |
14 |
|
|
15 |
|
$Id$ |
21 |
|
|
22 |
|
#include "pmapdata.h" |
23 |
|
|
24 |
+ |
#ifdef __cplusplus |
25 |
+ |
extern "C" { |
26 |
+ |
#endif |
27 |
+ |
|
28 |
|
/* Bias compensation weighting function */ |
29 |
|
/* #define BIASCOMP_WGT(n) 1 */ |
30 |
|
/* #define BIASCOMP_WGT(n) (n) */ |
35 |
|
/* Dump photon bandwidth for bias compensated density estimates */ |
36 |
|
/* #define BIASCOMP_BWIDTH */ |
37 |
|
|
33 |
– |
|
38 |
|
void biasComp (PhotonMap*, COLOR); |
39 |
|
/* Photon density estimate with bias compensation, returning irradiance. |
40 |
|
Expects photons in search queue after a kd-tree lookup. */ |
42 |
|
void volumeBiasComp (PhotonMap*, const RAY*, COLOR); |
43 |
|
/* Photon volume density estimate with bias compensation, returning |
44 |
|
irradiance. Expects photons in search queue after a kd-tree lookup. */ |
45 |
+ |
|
46 |
+ |
#ifdef __cplusplus |
47 |
+ |
} |
48 |
+ |
#endif |
49 |
|
|
50 |
|
#endif |