Announcement

Collapse
No announcement yet.

Save Batch Renders with Render Elements and Lens Effects

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Save Batch Renders with Render Elements and Lens Effects

    Hi guys,
    I am trying to setup batch render with multiple scene presets and cameras.
    I need the render output saved in EXR format with all the render elements, lens effects, white balance and exposure setting as in VRay Frame Buffer.
    Is there some way we can achieve this?

  • #2
    Currently, saving color corrections and lens effects when rendering through Batch is not possible. What you can do is render the images through Batch without color corrections and lens effects and afterward use a script for loading the images in the VFB and applying the necessary corrections. Additionally, for the lens effects, it is possible to use the vdenoise.exe tool as an application method (as described in this post: https://forums.chaosgroup.com/forum/...98#post1040698). The other option would be to render with the latest stable V-Ray for Maya build without Batch and use this line of code as a Post Translate Python Script to save the color corrections in the EXRs:

    Code:
    from vray.utils import *
    
    o = findByType('SettingsOutput')
    o[0].set('img_rawFileSaveColorCorrections', 1)
    Aleksandar Hadzhiev | chaos.com
    Chaos Support Representative | contact us

    Comment

    Working...
    X