Skip to main content

Questions tagged [importance-sampling]

The tag has no usage guidance.

2 votes
1 answer
66 views

Lots of bad samples (below the hemisphere) when sampling the GGX VNDF

I've noticed that my implementation of GGX VNDF sampling produces quite a lot of bad samples (below the hemisphere). When such a sample occurs, I terminate the ray, leading to an immediate black pixel....
Tom Clabault's user avatar
1 vote
1 answer
44 views

Distance sampling with unbiased transmittance estimators

I'm currently trying some things with transmittance estimators in PBRT and I have implemented the following paper: Unbiased Ray-Marching Transmittance Estimator. This method assumes that two points $x$...
Matthias K.'s user avatar
2 votes
1 answer
59 views

Direct Light Sampling produces way too bright images compared to naive diffuse bounces only

it's me again! :D I have finally implemented area lights, but without modifying the emission value of the material, this is what it looks like with indirect light only, this is what it looks like with ...
Syrinxos's user avatar
2 votes
0 answers
129 views

"Charlie" Sheen BRDF's directional albedo integrates to values higher than 1 at low roughnesses. Does this mean it is not energy conserving?

I am implementing the BRDF from the 2017 paper "Production Friendly Microfacet Sheen BRDF". This BRDF is modelled as a coat layer stacked on top of a base specular. In order to do so in an ...
avilapa's user avatar
  • 53
0 votes
1 answer
141 views

Evaluating the Rendering Equation by hand (simple case)

I'm trying to make intuitive sense of the rendering equation and so I'm trying to work out a trivial example by hand, though ultimately I'm just trying to understand how monte carlo importance ...
Chris Gnam's user avatar
0 votes
1 answer
147 views

How does a path tracer capture light falloff if it deals exclusively with radiance?

My understanding is that path tracers deal with radiance because radiance is constant along a ray. You simply go through and evaluate the light transport equation: $$ L_o(p, \omega_o) = L_e(p,\...
Chris Gnam's user avatar
2 votes
1 answer
173 views

How to approach implementing Cook-Torrence microfacet brdf?

Trying to implement the Cook-Torrance BRDF for my path tracer. Confused about how to do it though. I've seen two approaches: 1: Sample the NDF, evaluate diffuse and specular components and add them ...
Ruben's user avatar
  • 23
1 vote
0 answers
84 views

Confusion about different sampling strategies in Monte Carlo Path Tracing

I am studying Monte Carlo Path Tracing from different sources. However, I have some confusion about the sampling part and dare to post here for experts' ...
bim's user avatar
  • 135
2 votes
1 answer
426 views

Cosine weighted hemisphere sampling is a little bit darker and arguably noisier than reference

I'm writing a small path tracer that currently: Samples a random light source at each bounce (direct lighting) Bounces rays around multiple times (indirect lighting) The scene only contains ...
Tom Clabault's user avatar
1 vote
1 answer
37 views

Sampling scattering direction around directions other than the last ray direction

In a path tracer, if we want to sample a ray direction in scattering medium, we can use phase function sampling, which actually use the direction of the ray before sampling as a sort of anchor to ...
Enigmatisms's user avatar
  • 1,112
1 vote
0 answers
82 views

Questions about equi-angular sampling

Equiangular sampling is a sampling method for point (sphere) emitter in scattering medium. While it claims to be very efficient when dealing with point (sphere) emitter in scattering medium (see this ...
Enigmatisms's user avatar
  • 1,112
1 vote
1 answer
392 views

Importance sampling of the blinn-phong brdf in pathtracing

tl;dr: How do you importance sample the blinn-phong-brdf? Recipe for importance sampling of the phong brdf as far as i understood it (pseudo-code): ...
Berti Krüger's user avatar
1 vote
1 answer
58 views

Confusion about the bias during Monte Carlo integration

I recently stumbled into this question: Say, for example, we are doing mean-free-path sampling (distance sampling) in a scattering medium and to keep it simple, let's only consider the single ...
Enigmatisms's user avatar
  • 1,112
1 vote
0 answers
55 views

Measure for volumetric rendering equation

Recently I've been digging deeper into the volumetric rendering (volumetric path tracing, to be specific). I already know that for surface rendering, there are two commonly used measures (reference ...
Enigmatisms's user avatar
  • 1,112
2 votes
0 answers
46 views

How to properly use scattering coefficient during volumetric path tracing?

The increased radiance during sampling is known by: $$ L_s = L_e + \sigma_s \int p(w, w')f_p(w, w')dw' $$ The latter part, which accounts for in-scattering radiance bears a $\sigma_s$ in it. The ...
Enigmatisms's user avatar
  • 1,112

15 30 50 per page
1
2 3 4 5