POV-Ray : Newsgroups : povray.binaries.images : Yet another new version of my RSOCP Server Time
7 Aug 2024 11:24:03 EDT (-0400)
  Yet another new version of my RSOCP (Message 1 to 7 of 7)  
From: DJ Wiza
Subject: Yet another new version of my RSOCP
Date: 7 Apr 2006 06:44:54
Message: <443642a6@news.povray.org>
Same thing...but this time, I got rid of the sky_sphere and made the 
ambient of the checker 1, creating a nice effect.

There are two things I'm confused about though...

First, why would the reflections of the floor show up brighter than the 
floor itself?

Second, what is with the couple odd white/black pixels at the very top 
of the image, towards the right?  Is it a focal blur artifact?  I'm 
using 200 samples, 0.99 confidence, and 1/8192 variance.

-DJ


Post a reply to this message


Attachments:
Download 'rsocp_dark.png' (150 KB)

Preview of image 'rsocp_dark.png'
rsocp_dark.png


 

From: Chambers
Subject: Re: Yet another new version of my RSOCP
Date: 7 Apr 2006 12:26:12
Message: <443692a4$1@news.povray.org>
"DJ Wiza" <Kil### [at] sohcahtoanet> wrote in message 
news:443642a6@news.povray.org...
> Same thing...but this time, I got rid of the sky_sphere and made the
> ambient of the checker 1, creating a nice effect.

Really cool :)

> There are two things I'm confused about though...
>
> First, why would the reflections of the floor show up brighter than the
> floor itself?

Sorry, I don't see what you mean by this.  The checker has an ambient value 
of 1, meaning full value or pure white (in standard rgb terms, it's 
255,255,255).  Nothing in the scene is brighter than this :)

> Second, what is with the couple odd white/black pixels at the very top
> of the image, towards the right?  Is it a focal blur artifact?  I'm
> using 200 samples, 0.99 confidence, and 1/8192 variance.

Those ARE strange... are they reproducible?  That is, if you render that 
section again, do they appear again?

You could always try shifting either the position of the camera or the 
look_at point to a slightly different place.  Or change the aperture amount 
by some miniscule value, just to see if these changes fix things.

...Chambers


Post a reply to this message

From: Samuel Benge
Subject: Re: Yet another new version of my RSOCP
Date: 7 Apr 2006 14:40:00
Message: <web.4436b139b1816bc98a401a3b0@news.povray.org>
DJ, did you try adding conserve_energy to the finish block? It should help
reflective surfaces from becoming brighter than the colors they are
reflecting.

For example:
  finish{reflection .8 conserve_energy}

~Sam

DJ Wiza <Kil### [at] sohcahtoanet> wrote:
> There are two things I'm confused about though...
>
> First, why would the reflections of the floor show up brighter than the
> floor itself?


Post a reply to this message

From: Zeger Knaepen
Subject: Re: Yet another new version of my RSOCP
Date: 7 Apr 2006 16:15:20
Message: <4436c858$1@news.povray.org>
"DJ Wiza" <Kil### [at] sohcahtoanet> wrote in message 
news:443642a6@news.povray.org...
> Second, what is with the couple odd white/black pixels at the very top 

> of the image, towards the right?  Is it a focal blur artifact?  I'm 
> using 200 samples, 0.99 confidence, and 1/8192 variance.

The only way I ever got rid of those kinds of artifacts, was by using 
variance 0 :-/

cu!
-- 
#macro G(b,e)b+(e-b)*C/50#end#macro _(b,e,k,l)#local C=0;#while(C<50)
sphere{G(b,e)+3*z.1pigment{rgb G(k,l)}finish{ambient 1}}#local C=C+1;
#end#end _(y-x,y,x,x+y)_(y,-x-y,x+y,y)_(-x-y,-y,y,y+z)_(-y,y,y+z,x+y)
_(0x+y.5+y/2x)_(0x-y.5+y/2x)            // ZK http://www.povplace.com


Post a reply to this message

From: Cousin Ricky
Subject: Re: Yet another new version of my RSOCP
Date: 7 Apr 2006 19:35:00
Message: <web.4436f5f0b1816bc943a5e2560@news.povray.org>
"Samuel Benge" <stb### [at] hotmailcom> wrote:
> DJ, did you try adding conserve_energy to the finish block? It should help
> reflective surfaces from becoming brighter than the colors they are
> reflecting.
>
> For example:
>   finish{reflection .8 conserve_energy}

I've found that conserve_energy works only on transparent objects.

Try making sure that reflection, ambient, and diffuse don't add up to more
than 1.0.


Post a reply to this message

From: Cousin Ricky
Subject: Re: Yet another new version of my RSOCP
Date: 7 Apr 2006 20:00:01
Message: <web.4436fae0b1816bc943a5e2560@news.povray.org>
DJ Wiza <Kil### [at] sohcahtoanet> wrote:
> First, why would the reflections of the floor show up brighter than the
> floor itself?

I'm not quite sure i understand where you're talking about.  Are you talking
about the reflections of the black tiles?  (With an ambient of 1, the white
tiles are already as bright as anything can show with this rendering
model.)

Do you have non-zero diffuse and ambient values for the "spheres"?  If so,
then what looks like a lightening of the black tile reflections could be
the color (pigment value) of the sphere itself showing through.  This is
actually the way most specular surfaces work in real life, so is not
necessarily an "error."  If you use a copper mirror, for example, all the
reflections in the mirror will have a reddish brown cast to them.
Likewise, reflections in a silver or chrome sphere, unless they are
extremely highly polished, will have a white to light gray tint to them.

In real life, there's only so much polish you can give to a metal surface.
And if the metal is colored, the color of the metal will _always_ show
through, as reproduced by POV-Ray's metallic keyword.  That's why we
stopped using copper and speculum and switched to metal-coated glass when
the technology was developed.


Post a reply to this message

From: DJ Wiza
Subject: Re: Yet another new version of my RSOCP
Date: 10 Apr 2006 02:17:51
Message: <4439f88f@news.povray.org>
Here's a 1600x1200 version.  A friend on IRC liked it so much he asked 
for a desktop size version.  I figured I'd go ahead and post it here for 
anyone who wants it.

-DJ

DJ Wiza wrote:
> Same thing...but this time, I got rid of the sky_sphere and made the 
> ambient of the checker 1, creating a nice effect.
> 
> There are two things I'm confused about though...
> 
> First, why would the reflections of the floor show up brighter than the 
> floor itself?
> 
> Second, what is with the couple odd white/black pixels at the very top 
> of the image, towards the right?  Is it a focal blur artifact?  I'm 
> using 200 samples, 0.99 confidence, and 1/8192 variance.
> 
> -DJ
> 
> ------------------------------------------------------------------------
>


Post a reply to this message


Attachments:
Download 'rsocp_dark_big.png' (636 KB)

Preview of image 'rsocp_dark_big.png'
rsocp_dark_big.png


 

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