POV-Ray : Newsgroups : povray.general : First unofficial patch of POV-Ray 3.7.0: UberPOV Server Time
24 Apr 2024 15:20:19 EDT (-0400)
  First unofficial patch of POV-Ray 3.7.0: UberPOV (Message 2 to 11 of 11)  
<<< Previous 1 Messages Goto Initial 10 Messages
From: Jaime Vives Piqueres
Subject: Re: First unofficial patch of POV-Ray 3.7.0: UberPOV
Date: 18 Nov 2013 06:19:12
Message: <5289f7b0$1@news.povray.org>

> Hi folks,
>
> Anyone interested in test-driving a few unofficial additions to
> POV-Ray 3.7.0, please have a look at
> https://github.com/UberPOV/UberPOV.
>
> The most notable change is the addition of BLURRED REFLECTIONS, as
> well as a stochastic anti-aliasing (and generic oversampling) mode to
> go along with it.

   How convenient that I had no time this weekend to continue with the
baubles scene... :)


P.S.: I was really missing the smell of an unofficial patch in the
morning...

--
jaime


Post a reply to this message

From: Warp
Subject: Re: First unofficial patch of POV-Ray 3.7.0: UberPOV
Date: 18 Nov 2013 09:36:03
Message: <528a25d2@news.povray.org>
In povray.general clipka <ano### [at] anonymousorg> wrote:
> The most notable change is the addition of BLURRED REFLECTIONS

What are the advantages compared to the current trick (which can be
used to achieve images like http://iki.fi/warp/pics/Rubiks_Revenge2.jpg )?

-- 
                                                          - Warp


Post a reply to this message

From: clipka
Subject: Re: First unofficial patch of POV-Ray 3.7.0: UberPOV
Date: 18 Nov 2013 10:36:38
Message: <528a3406@news.povray.org>
Am 18.11.2013 15:36, schrieb Warp:
> In povray.general clipka <ano### [at] anonymousorg> wrote:
>> The most notable change is the addition of BLURRED REFLECTIONS
>
> What are the advantages compared to the current trick (which can be
> used to achieve images like http://iki.fi/warp/pics/Rubiks_Revenge2.jpg )?

There are three drawbacks of that trick:

(1) It is well known to scale poorly in terms of render time when any 
other oversampling features are involved, such as focal blur, area 
lights, and most notably other objects in the scene that also have 
blurred reflections.

(2) It is a mess to parameterize for physical consistency with the 
highlights.

(3) It becomes an ugly hassle when working with multi-layered (or 
otherwise complex) textures; this is not only an issue of ease of use, 
but also of render time. (Averaging multi-layered textures that only 
differ in the normals of the topmost layer is anything but effective, as 
not only the reflection but each other layer is computed N-fold as well.)

I know that you love that trick, and have in some tutorial made claims 
that it is a sufficient replacement for inbuilt blurred reflections, but 
the above facts make it no more than a nasty kludge. One that can be 
used to good effect if you invest sufficient time and effort, but a 
kludge nonetheless.


While I can't claim the current UberPOV implementation of blurred 
reflections to be particularly speedy, there are mechanisms in place to 
limit the number of tertiary rays when combining it with focal blur, 
area lights, subsurface light transport, or just a vast number of 
objects with blurred reflections, so that it doesn't get too bad with 
more complex scenes. There is also room to add some tweakables that may 
help speed things up.

The parameterization is designed such that using the same parameters as 
for the specular highlights will give physically accurate results. 
(Admittedly this only holds strictly true if you don't use variable 
reflection or fresnel, but that's not a problem with the reflection but 
with the current limitations of highlights; some future UberPOV version 
will address this as well.)

As for ease of use, it's as simple as adding a roughness parameter to 
the reflection block, and activating some feature that provides for 
sufficient oversampling (either focal blur, the new anti-aliasing mode, 
or both).


Post a reply to this message

From: Ive
Subject: Re: First unofficial patch of POV-Ray 3.7.0: UberPOV
Date: 18 Nov 2013 11:32:02
Message: <528a4102$1@news.povray.org>
Using VS2010 I get 3 compile time errors

1>..\..\source\backend\lighting\photons.cpp(417): error C2661: 
'pov::Trace::WNRX::WNRX' : no overloaded function takes 4 arguments

3>..\..\vfe\vfedisplay.cpp(61): error C2661: 
'pov_frontend::Display::Display' : no overloaded function takes 4 arguments

3>C:\Work\POV\UberPov\libraries\boost\boost/bind/bind.hpp(515): error 
C2593: 'operator [' is ambiguous

and as a result a link error as povbackend64.lib is not build.

Official POV 3.7 works.


As a side note: I'm curious to see how adaptive multi-level oversampling 
works out. To be honest, I'm considering to switch to a commercial 
render engine (I did already use the trial versions of the Maxwell and 
VRay renderer), not because of better quality but because both are so 
much faster when working with more complex scenes where e.g. things 
happen like blurred inter-reflections.
IMO the way POV-Ray implements various independent multi-sampling 
methods for various features (media, area_lights, focal blur and so 
on..) is the culprit here.

-Ive


Post a reply to this message

From: clipka
Subject: Re: First unofficial patch of POV-Ray 3.7.0: UberPOV
Date: 18 Nov 2013 11:54:12
Message: <528a4634@news.povray.org>
Am 18.11.2013 17:31, schrieb Ive:
>
> Using VS2010 I get 3 compile time errors
>
> 1>..\..\source\backend\lighting\photons.cpp(417): error C2661:
> 'pov::Trace::WNRX::WNRX' : no overloaded function takes 4 arguments
>
> 3>..\..\vfe\vfedisplay.cpp(61): error C2661:
> 'pov_frontend::Display::Display' : no overloaded function takes 4 arguments
>
> 3>C:\Work\POV\UberPov\libraries\boost\boost/bind/bind.hpp(515): error
> C2593: 'operator [' is ambiguous
>
> and as a result a link error as povbackend64.lib is not build.

The first two errors should be fixed now. Need to figure out what's 
wrong with the 3rd though.


> As a side note: I'm curious to see how adaptive multi-level oversampling
> works out. To be honest, I'm considering to switch to a commercial
> render engine (I did already use the trial versions of the Maxwell and
> VRay renderer), not because of better quality but because both are so
> much faster when working with more complex scenes where e.g. things
> happen like blurred inter-reflections.
> IMO the way POV-Ray implements various independent multi-sampling
> methods for various features (media, area_lights, focal blur and so
> on..) is the culprit here.

That's what I think, too.

I don't yet see the performance I was expecting, but I guess there's 
still quite some headroom for tweaking and optimizing.


Post a reply to this message

From: clipka
Subject: Re: First unofficial patch of POV-Ray 3.7.0: UberPOV
Date: 18 Nov 2013 13:09:06
Message: <528a57c2$1@news.povray.org>
Am 18.11.2013 17:54, schrieb clipka:
> Am 18.11.2013 17:31, schrieb Ive:
>>
>> Using VS2010 I get 3 compile time errors
>>
>> 1>..\..\source\backend\lighting\photons.cpp(417): error C2661:
>> 'pov::Trace::WNRX::WNRX' : no overloaded function takes 4 arguments
>>
>> 3>..\..\vfe\vfedisplay.cpp(61): error C2661:
>> 'pov_frontend::Display::Display' : no overloaded function takes 4
>> arguments
>>
>> 3>C:\Work\POV\UberPov\libraries\boost\boost/bind/bind.hpp(515): error
>> C2593: 'operator [' is ambiguous
>>
>> and as a result a link error as povbackend64.lib is not build.
>
> The first two errors should be fixed now. Need to figure out what's
> wrong with the 3rd though.

Looks like some files didn't make it into the Git repo. Shoot me if it 
doesn't work NOW.


Post a reply to this message

From: clipka
Subject: Re: First unofficial patch of POV-Ray 3.7.0: UberPOV
Date: 18 Nov 2013 13:10:03
Message: <528a57fb@news.povray.org>
Am 18.11.2013 17:54, schrieb clipka:
> Am 18.11.2013 17:31, schrieb Ive:
>>
>> Using VS2010 I get 3 compile time errors
>>
>> 1>..\..\source\backend\lighting\photons.cpp(417): error C2661:
>> 'pov::Trace::WNRX::WNRX' : no overloaded function takes 4 arguments
>>
>> 3>..\..\vfe\vfedisplay.cpp(61): error C2661:
>> 'pov_frontend::Display::Display' : no overloaded function takes 4
>> arguments
>>
>> 3>C:\Work\POV\UberPov\libraries\boost\boost/bind/bind.hpp(515): error
>> C2593: 'operator [' is ambiguous
>>
>> and as a result a link error as povbackend64.lib is not build.
>
> The first two errors should be fixed now. Need to figure out what's
> wrong with the 3rd though.

see povray.unofficial.patches for the follow-up.


Post a reply to this message

From: Ive
Subject: Re: First unofficial patch of POV-Ray 3.7.0: UberPOV
Date: 18 Nov 2013 14:38:38
Message: <528a6cbe@news.povray.org>
Am 18.11.2013 19:09, schrieb clipka:
>
> Looks like some files didn't make it into the Git repo. Shoot me if it
> doesn't work NOW.
>
No need for violence - successfully build.
Will play with it tomorrow and... thanks!

-Ive


Post a reply to this message

From: Ive
Subject: Re: First unofficial patch of POV-Ray 3.7.0: UberPOV
Date: 19 Nov 2013 08:41:57
Message: <528b6aa5$1@news.povray.org>
Ok, something goes wrong.
While the example scenes do work well a very simple scene of mine (where 
I just did try to add a bit of blurred reflection to a table) did not!
So I used one of your own scene file (stochastic_reflection_blur.pov) 
and simplified it until it shows the same problem.

command line:
+w800 +h600 +am2 +a0.1 +r3 +FE

None of the fancy features are even used anymore and render time is 
about 10 seconds with 3.7 but UberPov did after 10 minutes not even 
finish the first block.


//=================================================================================

//#version 3.7;

#version unofficial patch 3.7;
#patch "upov-reflection-roughness" 0.9;


global_settings {
   max_trace_level 25
   assumed_gamma 1.0
}

camera {
   perspective angle 50
   location  <0.0, 3,-5.0>
   right     x*image_width/image_height
   look_at   <0.0, 1.0, 0.0>
}

light_source {
   <3000,3000,0> color rgb 1
   area_light x*500,y*500, 9,9 adaptive 1 circular orient
}

sky_sphere {
   pigment {
     gradient <0,1,0>
     color_map {
       [0.00 srgb <0.6,0.7,1.0>]
       [0.35 srgb <0.1,0.0,0.8>]
       [0.65 srgb <0.1,0.0,0.8>]
       [1.00 srgb <0.6,0.7,1.0>]
     }
     scale 2
   }
}

plane{ <0,1,0>, 0
   texture{
     pigment{ checker color rgb 1 color rgb 0.1 }
     finish {
       ambient 0
       diffuse 0.7
       reflection { 1.0 fresnel} // roughness 0.005 }
   //    specular albedo 0.1
   //    roughness 0.005
     }
   }
   interior { ior 1.5 }
}


//=================================================================================


Post a reply to this message

From: clipka
Subject: Re: First unofficial patch of POV-Ray 3.7.0: UberPOV
Date: 19 Nov 2013 09:09:34
Message: <528b711e$1@news.povray.org>
Am 19.11.2013 14:41, schrieb Ive:
> Ok, something goes wrong.
> While the example scenes do work well a very simple scene of mine (where
> I just did try to add a bit of blurred reflection to a table) did not!
> So I used one of your own scene file (stochastic_reflection_blur.pov)
> and simplified it until it shows the same problem.

I'll dig into this.


Post a reply to this message

<<< Previous 1 Messages Goto Initial 10 Messages

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.