For a bit of background: The article talks a lot about global illumination. Here's what that means. First, you have to understand the cheaper alternative, which is called local illumination. With local illumination, for each pixel, you figure out what object you're looking at, and where on that object. You take into account the normal (direction of the surface at that point) and the optical properties of the object a…
Pixar's Chris Horne Sheds New Light on Monsters University
71–80 of 123 posts
Re: Pixar's Chris Horne Sheds New Light on Monsters University
#72Re: Pixar's Chris Horne Sheds New Light on Monsters University
#73I was wondering what Toy Story would look like if they re-rendered it with today's technology. Well, it turns out they already did! It was part of the theatrical re-releases of Toy Story and Toy Story 2 in 3D. http://www.bigscreenanimation.com/2008/09/toy-story-re-relea... Were these re-rendered versions released in 2D on Blu-ray?
I wonder if you really see a difference.
Re: Pixar's Chris Horne Sheds New Light on Monsters University
#74For a bit of background: The article talks a lot about global illumination. Here's what that means. First, you have to understand the cheaper alternative, which is called local illumination. With local illumination, for each pixel, you figure out what object you're looking at, and where on that object. You take into account the normal (direction of the surface at that point) and the optical properties of the object a…
There's also another factor at play, which is directability. Physical correctness is not usually a priority except as far as it advances the artistic goals of the people making the movie. If the director says, "can you make the right side of that table look less red?", you need to have some way for the artist to achieve that goal, even if that's not how the scene would "really" look. I expect that the development of new tools and processes to allow precise manipulation of the lighting in globally illuminated scenes was just as much, if not more, of a barrier than the additional cost in rendering time.
Re: Pixar's Chris Horne Sheds New Light on Monsters University
#75Earlier quoted context omitted.
Yep! Rendering is very parallelizable, thank goodness. And at more than one level: You can assign different regions of a single frame to different processors, and you can also assign different frames to different processors. It's one of those special computing problems that really can be solved by throwing more silicon at it. Which is a real blessing, considering how unworkably slow it would be otherwise.
I understand how you would break up an individual frame if you are using the 'local illumination' described in the ancestor post, but if the 'global illumination' has interactions across the entire frame, how is that compatible with parallel processing? It sounds a bit like the n-body problem, which has parallel approximation algorithms, but nothing terribly straightforward.
But I'm just guessing about all this.
Re: Pixar's Chris Horne Sheds New Light on Monsters University
#76Earlier quoted context omitted.
Yep! Rendering is very parallelizable, thank goodness. And at more than one level: You can assign different regions of a single frame to different processors, and you can also assign different frames to different processors. It's one of those special computing problems that really can be solved by throwing more silicon at it. Which is a real blessing, considering how unworkably slow it would be otherwise.
I understand how you would break up an individual frame if you are using the 'local illumination' described in the ancestor post, but if the 'global illumination' has interactions across the entire frame, how is that compatible with parallel processing? It sounds a bit like the n-body problem, which has parallel approximation algorithms, but nothing terribly straightforward.
Re: Pixar's Chris Horne Sheds New Light on Monsters University
#77From what I gathered from John Carmack, ray tracing is done much more efficiently with voxels than with triangles, so hopefully this will push game engine companies to incorporate voxels sooner into their engines, too.
They're already on it. The Unreal 4 engine will use voxel cone tracing: http://www.unrealengine.com/files/misc/The_Technology_Behind...
Hence, it's not a realtime "voxel engine" as far as visual rendering goes.
Re: Pixar's Chris Horne Sheds New Light on Monsters University
#78Earlier quoted context omitted.
They explain the extent to which they used to use raytracing in the article - is it misrepresented? It's in a direct quote so I doubt it.
Yes, because the article (and the person in it) doesn't seem to understand the difference between path tracing (ray tracing with global illumination - multiple bounces even with diffuse surfaces), and ray tracing = sending rays around a scene and bouncing them off specular reflective/refractive surfaces - which Pixar have been doing for years. It's been possible to write raytraced shaders in PRMan for over 12 years n…
Re: Pixar's Chris Horne Sheds New Light on Monsters University
#79sigh WHY has he locked the font size down on his blog such that CMD + and - only change the text area width and image sizes?
Re: Pixar's Chris Horne Sheds New Light on Monsters University
#80Earlier quoted context omitted.
Yep! Rendering is very parallelizable, thank goodness. And at more than one level: You can assign different regions of a single frame to different processors, and you can also assign different frames to different processors. It's one of those special computing problems that really can be solved by throwing more silicon at it. Which is a real blessing, considering how unworkably slow it would be otherwise.
I understand how you would break up an individual frame if you are using the 'local illumination' described in the ancestor post, but if the 'global illumination' has interactions across the entire frame, how is that compatible with parallel processing? It sounds a bit like the n-body problem, which has parallel approximation algorithms, but nothing terribly straightforward.
In another way of thinking about it, raytracing simulates photons. Photons don't interact with each other, so the problem of simulating photons is massively parallel.