MilchRatchet / Luminary

CUDA based Pathtracing Offline and Realtime Renderer
MIT License
30 stars 1 forks source link

Probability Rejection #25

Closed MilchRatchet closed 3 years ago

MilchRatchet commented 3 years ago

Right now the important sampling runs into the issue that sometimes very rare samples get pulled which hinder convergence as pixels with these rare samples will take many samples to converge from there on.

I simply had the idea that we could reject samples which are too rare. This may also leave the conditional light sampling superflous.

MilchRatchet commented 3 years ago

Fixed by #26.