Revision as of 11:47, 11 July 2006 editPmkpmk (talk | contribs)419 editsm Language← Previous edit | Revision as of 21:08, 1 August 2006 edit undoKnotnic (talk | contribs)Extended confirmed users734 editsm linksNext edit → | ||
Line 6: | Line 6: | ||
Reyes efficiently achieves several effects that were deemed necessary for film-quality rendering: smooth curved surfaces, ], and ]. | Reyes efficiently achieves several effects that were deemed necessary for film-quality rendering: smooth curved surfaces, ], and ]. | ||
Reyes renders curved surfaces, such as those represented by ]es, by dividing them into '']s'', small quadrilaterals each about one pixel in size. Although many micropolygons are necessary to approximate curved surfaces accurately, they can be processed with simple, parallelizable operations. A Reyes renderer |
Reyes renders curved surfaces, such as those represented by ]es, by dividing them into '']s'', small quadrilaterals each about one pixel in size. Although many micropolygons are necessary to approximate curved surfaces accurately, they can be processed with simple, ] operations. A Reyes renderer ]s high-level primitives into micropolygons on demand, dividing each primitive only as finely as necessary to appear smooth in the final image. | ||
Next, a shader system assigns a color and opacity to each micropolygon. Most Reyes renderers allow users to supply arbitrary lighting and texturing functions written in a ]. Micropolygons are processed in large grids which allow computations to be vectorized. | Next, a shader system assigns a color and opacity to each micropolygon. Most Reyes renderers allow users to supply arbitrary lighting and texturing functions written in a ]. Micropolygons are processed in large grids which allow computations to be ]. | ||
Shaded micropolygons are sampled in screen space to produce the output image. Reyes employs an innovative hidden-surface algorithm or ''hider'' which performs the necessary integrations for motion blur and depth of field without requiring more geometry or shading samples than an unblurred render would need. The hider accumulates micropolygon colors at each pixel across time and lens position using a ] called '']''. | Shaded micropolygons are sampled in screen space to produce the output image. Reyes employs an innovative hidden-surface algorithm or ''hider'' which performs the necessary integrations for motion blur and depth of field without requiring more geometry or shading samples than an unblurred render would need. The hider accumulates micropolygon colors at each pixel across time and lens position using a ] called '']''. |
Revision as of 21:08, 1 August 2006
Reyes rendering is a method used in 3D computer graphics to render an image. It was developed in the mid-1980s by Lucasfilm's Computer Graphics Research Group, which is now Pixar. It was first used in 1982 to render images for the Genesis effect sequence in the movie Star Trek II: The Wrath Of Khan. Pixar's PhotoRealistic RenderMan is one implementation of the Reyes algorithm.
Reyes stands for Renders Everything You Ever Saw (the name is also a pun on Point Reyes, California, near which Lucasfilm was located). The algorithm was designed to overcome the speed and memory limitations of photorealistic algorithms, such as ray tracing, in use at the time.
Reyes efficiently achieves several effects that were deemed necessary for film-quality rendering: smooth curved surfaces, motion blur, and depth of field.
Reyes renders curved surfaces, such as those represented by parametric patches, by dividing them into micropolygons, small quadrilaterals each about one pixel in size. Although many micropolygons are necessary to approximate curved surfaces accurately, they can be processed with simple, parallelizable operations. A Reyes renderer tessellates high-level primitives into micropolygons on demand, dividing each primitive only as finely as necessary to appear smooth in the final image.
Next, a shader system assigns a color and opacity to each micropolygon. Most Reyes renderers allow users to supply arbitrary lighting and texturing functions written in a shading language. Micropolygons are processed in large grids which allow computations to be vectorized.
Shaded micropolygons are sampled in screen space to produce the output image. Reyes employs an innovative hidden-surface algorithm or hider which performs the necessary integrations for motion blur and depth of field without requiring more geometry or shading samples than an unblurred render would need. The hider accumulates micropolygon colors at each pixel across time and lens position using a Monte Carlo method called stochastic sampling.
The basic Reyes pipeline has the following steps:
- Bound. Calculate the bounding volume of each geometric primitive.
- Split. Split large primitives into smaller, diceable primitives.
- Dice. Convert the primitive into a grid of micropolygons, each approximately the size of a pixel.
- Shade. Calculate lighting and shading at each vertex of the micropolygon grid.
- Bust the grid into individual micropolygons, each of which is bounded and checked for visibility.
- Hide. Sample the micropolygons, producing the final 2D image.
In this design, the renderer must store the entire frame buffer in memory since the final image cannot be output until all primitives have been processed. A common memory optimization introduces a step called bucketing prior to the dicing step. The output image is divided into a coarse grid of "buckets," each typically 16 by 16 pixels in size. The objects are then split roughly along the bucket boundaries and placed into buckets based on their location. Each bucket is diced and drawn individually, and the data from the previous bucket is discarded before the next bucket is processed. In this way only a frame buffer for the current bucket and the high-level descriptions of all geometric primitives must be maintained in memory. For typical scenes, this leads to a significant reduction in memory usage compared to the unmodified Reyes algorithm.
Reyes renderers
The following renderers use the Reyes algorithm in one way or the other or at least allow users to select it to produce their images:
- Digits 'n Art's 3Delight (link)
- Aqsis (link)
- jrMan (link)
- Pixar's RenderMan Pro Server & RenderMan for Maya (link)
- Pixels 3d Renderer (link)
- Pixie (link)
- DotC Software's RenderDotC (link)
- SideFX's VMantra (link)
- e frontier Poser's FireFly (link)
References
- Robert L. Cook., Loren Carpenter, and Edwin Catmull. "The Reyes image rendering architecture." Computer Graphics (SIGGRAPH '87 Proceedings), pp. 95–102.
- Anthony A. Apodaca and Larry Gritz. Advanced RenderMan: Creating CGI for Motion Pictures. Morgan Kaufmann Publishers. ISBN 1-55860-618-1