This is RenderMan 21 Documentation you are viewing. The Rmanwiki home page will redirect you to the current documentation.
In movies and commercials, we
VFX artists often need to composite the CG objects over a live action film plate. To convince the audience that the CG objects are real and belong to the scene, we need to use a holdout object to holdouts are used to collect the CG objects' shadow and reflection that match very closely to the shadow and reflection in the live action plate.
Carousel Image Slider | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
Geometry
Holdout objects are used in place of real world object to catch light interactions from 3D objects. In RenderMan, holdout objects are specified by enabling the trace holdout attribute holdout.
Code Block |
---|
Attribute "trace" "int holdout" [1] |
Integrators and AOVs
Holdouts are an integrator illumination feature implemented at the integrator level. They are able to catch a variety of integrator-specific illumination effects such as diffuse and specular reflections, transmissions, and caustics. Available integrator that support holdouts are: PxrPathTracer, PxrVCM, and PxrUPBP.
// The same holdout render featuring caustics and thin shadows
Because holdouts are considered an intrinsic geometric property when calculating illumination, LPE workflow remain
Carousel Image Slider | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
LPE workflow remains unchanged for holdout geometry.
// A render of a beauty, diffuse, specular AOV
Carousel Image Slider | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Note |
---|
Because holdouts workflow involves multiple AOVs, rendering with adapt all enabled can reduce noise. |
Lights
By default, light sources are considered holdouts and do not illuminate other holdout objects directly. This prevents double contribution between 3d lights used to illuminate non-holdout geometry and the illumination already captured on the plate image.
To create a holdout light (a light source that directly illuminates other holdouts), create a light using does directly illuminate holdout objects, use "__illumholdout" as the light group suffix. This tells integrators integrator plug-ins to consider this light as a new non-holdout light source when illuminating holdout geometrydetermining illumination.
Code Block |
---|
Light "PxrSphereLight" "spherelight" "string lightGroup" ["light__illumholdout"] |
Carousel Image Slider | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Alpha, Shadows, and Compositing
A holdout shadow pass Holdout contribution can be output using the PxrShadowFilter plug-in. Occluded composited over a film plate using an alpha and shadow pass as masks. The shadow pass is generated using the PxrShadowDisplayFilter plug-in and can be optionally written to its own AOV or added to the alpha. The occluded and unoccluded input AOVs should be rendered using the holdouts LPE prefix so that they only contain the shadowing term for holdout geometry.
Code Block |
---|
DisplayChannel "color shadow"
DisplayChannel "color occluded" "string source" ["color lpe:holdouts;C[DS]+[LO]"]
DisplayChannel "color unoccluded" "string source" ["color lpe:holdouts;unoccluded;C[DS]+[LO]"] |
Carousel Image Slider | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Compositing can be interactively previewed in RenderMan by using PxrImagePlaneFilter SampleFilter the PxrImageDisplayFilter plug-in. This will composite the beauty render over the specified image planefilm plate with the beauty channel, using the alpha channel and holdout shadow AOV to mask the plate.
Additional Considerations
Because holdouts workflow involves multiple AOVs, rendering with adapt all enabled can reduce noise.
Carousel Image Slider | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|