Specifically in the context of a real-time raytracer where view updates are frequent?

The obvious answer would seem to be "yes" and yet I wonder if any methods have been found to accelerate Monte Carlo methods given their usefulness.

link|improve this question

67% accept rate
1  
I don't know the answer, but it seems that if sampling is done using jitter, the coherency is maximized. As opposed to randomly picking points to sample anywhere. – Vaughn Cato Nov 12 '11 at 14:37
Hi Vaughn. Can you offer a source for this? – Nick Wiggill Nov 12 '11 at 14:39
This was just an idea off the top of my head. Do you mean sample source code? – Vaughn Cato Nov 12 '11 at 14:40
Oh right. No, what I meant was eg. a paper where this jitter is described. Are you referring to localised jitter in ray packets? – Nick Wiggill Nov 12 '11 at 14:50
1  
Sorry, I thought it was a common technique, but I'm having a hard time finding a good example. I mean jitter where you break up the pixel into a grid of n cells and then do a random sample within each cell -- as opposed to just doing n random samples within each pixel. If you process adjacent cells then this should increase coherency. – Vaughn Cato Nov 12 '11 at 15:12
show 4 more comments
feedback

1 Answer

If you mean by stochastic stochasting sampling (for simulating effects like DOF or motion blur), the answer is probably yes. Two sample rays for a same pixel could lead to two very different paths in your acceleration structure, leading to potential cache misses.

One of the best way to accelerate this is simply not to use raytracing for primary rays but rasterization and use stochastic sampling of your polygons (check for Reyes rendering). That's what softwares like Pixar's RenderMan® do for instance.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.