Announcement

Collapse
No announcement yet.

Bloom and Glare

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

  • Bloom and Glare

    Hi all

    Just wondering why the output window reports a repeat of Bloom and Glare, instead of applying the post effects once at the end:


    [2017/Oct/10|11:59:31] V-Ray: Noise threshold lowered to 0.000015 with 4.6 percent active pixels.
    [2017/Oct/10|12:00:14] V-Ray: Noise threshold lowered to 0.000008 with 4.6 percent active pixels.
    [2017/Oct/10|12:00:58] V-Ray: Noise threshold lowered to 0.000004 with 4.6 percent active pixels.
    [2017/Oct/10|12:01:41] V-Ray: Noise threshold lowered to 0.000002 with 4.6 percent active pixels.
    [2017/Oct/10|12:02:25] V-Ray: Final noise threshold set: 0.000000
    [2017/Oct/10|12:02:40] V-Ray: (Estimated time remaining: 1h 17m 52.6s): 19 % completed
    [2017/Oct/10|12:05:58] V-Ray: CPU bloom start...
    [2017/Oct/10|12:06:36] V-Ray: CPU bloom completed. Took 38496 ms.
    [2017/Oct/10|12:06:36] V-Ray: CPU glare start...
    [2017/Oct/10|12:07:35] V-Ray: CPU glare completed. Took 58912 ms.
    [2017/Oct/10|12:24:10] V-Ray: CPU bloom start...
    [2017/Oct/10|12:24:45] V-Ray: CPU bloom completed. Took 35417 ms.
    [2017/Oct/10|12:24:45] V-Ray: CPU glare start...
    [2017/Oct/10|12:25:37] V-Ray: CPU glare completed. Took 52087 ms.

    And does each 'bloom and glare' pass include a noise refinement/increase in image quality?

    Cheers
    Last edited by sherridge101; 10-10-2017, 04:43 AM.

  • #2
    With progressive rendering, we update the post-effects (denoiser, bloom/glare) periodically during the actual rendering. We don't seem to have exposed the option for controlling this in the UI, but you can use the following post-translate Python callback to force the update only at the end of the rendering:
    Code:
    from vray.utils import *
    
    p=findByType("SettingsImageSampler")
    p[0].set("progressive_effectsUpdate", 0)
    You can set it to other numbers between 0 and 100 to control the frequency of the updates.

    Best regards,
    Vlado
    I only act like I know everything, Rogers.

    Comment


    • #3
      Thanks Vlado.

      It's not a biggy for us, so no worries on having the feature exposed.

      Thanks for the code. Do I run this in the Script Editor before setting off a render?

      Comment


      • #4
        You put this into the post-translate Python callback text box in the Common tab of the V-Ray render settings.

        Best regards,
        Vlado
        I only act like I know everything, Rogers.

        Comment


        • #5
          Cool, cheers.

          Comment

          Working...
          X