POV-Ray : Newsgroups : povray.general : Rendering interior spaces: lighting setup Server Time
1 Aug 2024 00:24:32 EDT (-0400)
  Rendering interior spaces: lighting setup (Message 6 to 15 of 15)  
<<< Previous 5 Messages Goto Initial 10 Messages
From: Alain
Subject: Re: Rendering interior spaces: lighting setup
Date: 19 Sep 2006 20:47:31
Message: <45108fa3$1@news.povray.org>
motorsep nous apporta ses lumieres en ce 19/09/2006 00:53:
> Ok. This is my scene rendered in Indigo:
> 
> http://img148.imageshack.us/img148/2594/bedroom01e24hrs21minte3.png
> 
> This is the same scene, but rendered with Povray (same one parallel light
> source as in above scene):
> 
> http://img153.imageshack.us/img153/8856/bedroom01fmz6.jpg
> 
> Obviously, I need to make my scene look like one that rendered with Indigo.
> How can I make it look like it? What radiosity settings do I use?
> Here is what I came up with:
> 
> #version unofficial MegaPov 1.21
> global_settings {
> noise_generator 3
The default, you don't need to set.
> assumed_gamma 2.2
> max_trace_level 30
Your scene don't look as if it needs that much.
> radiosity {
>  pretrace_start 1
It's useless to start at that level. better to stick with the default here. 
Default = 0.08 or 8% of the image's width.
>  pretrace_end 0.003125
Keep it at the (pretrace_start / 2^n) domain. Other values will be rounded.
>  adaptive 2
adaptive is megapov only. Don't works with the official version.
>  error_bound { 0.15 adaptive 1.5, 20 }
Using megapov only syntax.
Defaults to 1.8. A low value requires a high count value.
>  count 150
You may need a larger value here.
>  recursion_limit 1
You need at least 2. 3 would probably be beter. 4 may not be worth it. My 
personal experience don't show that much effect on the render time.
>  brightness 1.5
To brighten up the scene.
You can add:
low_error_factor 0.4 or less.
It lowers the error_bound during the last pretrace step by that amount 
(error_bound * low_error_factor). Default to 0.5
>  }
> }
> 
> Thanks.
> 
> 
> 
> 
To get beter similarity, use a sky_sphere or large world sphere with a gradient, 
blue at the zenit and pinkish near the horizon.

-- 
Alain
-------------------------------------------------
An unbreakable toy is useful for breaking other toys.


Post a reply to this message

From: Thomas de Groot
Subject: Re: Rendering interior spaces: lighting setup
Date: 20 Sep 2006 04:01:29
Message: <4510f559$1@news.povray.org>
One thing that was not mentioned, but which concerns your POV-Ray scene in 
general: control if your finish {ambient} of the objects is set to 0, 
especially before using radiosity. I think that the pillows and the blue 
cover have an  ambient >0.

Thomas


Post a reply to this message

From: motorsep
Subject: Re: Rendering interior spaces: lighting setup
Date: 20 Sep 2006 08:55:00
Message: <web.451139e45ebd583c732825210@news.povray.org>
Thank you guys for advice.
After reviewing all answers and tuning materials and settings, I came up
with that:

http://img170.imageshack.us/img170/797/bedroom01hli4.jpg

Radiosity settings:

radiosity {
pretrace_start 1
pretrace_end 0.003125
adaptive 2
error_bound { 0.1 adaptive 1.5, 20 }
count 500
recursion_limit 3
brightness 1.5
low_error_factor 0.2
nearest_count 7
}

I use sphere around my scene with such material:

*env
pigment
{
color rgb <0.842, 0.937, 1.000>
}
finish {
ambient 2
}

And also I use parallel light.

I still can't figure out how to get a rid of artifacts (maybe to increase
count to >1000), how to have windows not being overbrightened and have room
lit more evenly and make it lighter (that are a main concerns).
Any ideas?

Alain,
If I use this formula for "pretrace_start": >Default = 0.08 or 8% of the
image's width<, I get pretrace_start = 640*0.08=51.2 and it cause a huge
increase of rendering time and I get a l ot of artifacts :( Why? What am I
doing wrong?
Also you said: "Keep it at the (pretrace_start / 2^n) domain." What is
"2^n"? I mean "n" - where is it coming from?

Thank you guys, I appreciate you time!


Post a reply to this message

From: "Jérôme M. Berger"
Subject: Re: Rendering interior spaces: lighting setup
Date: 20 Sep 2006 13:55:53
Message: <451180a9$1@news.povray.org>
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

motorsep wrote:
> Thank you guys for advice.
> After reviewing all answers and tuning materials and settings, I came up
> with that:
> 
> http://img170.imageshack.us/img170/797/bedroom01hli4.jpg
> 
> Radiosity settings:
> 
> radiosity {
> pretrace_start 1
> pretrace_end 0.003125
> adaptive 2
> error_bound { 0.1 adaptive 1.5, 20 }
> count 500
> recursion_limit 3
> brightness 1.5
> low_error_factor 0.2
> nearest_count 7
> }
> 
> I use sphere around my scene with such material:
> 
> *env
> pigment
> {
> color rgb <0.842, 0.937, 1.000>
> }
> finish {
> ambient 2
> }
> 
> And also I use parallel light.
> 
> I still can't figure out how to get a rid of artifacts (maybe to increase
> count to >1000), how to have windows not being overbrightened and have room
> lit more evenly and make it lighter (that are a main concerns).
> Any ideas?
> 
> Alain,
> If I use this formula for "pretrace_start": >Default = 0.08 or 8% of the
> image's width<, I get pretrace_start = 640*0.08=51.2 and it cause a huge
> increase of rendering time and I get a l ot of artifacts :( Why? What am I
> doing wrong?

	Hem, a slight misunderstanding here: he meant that the default
value is 0.08 which will be interpreted by povray as 8% of the image
width. If you use 1 it will be interpreted as 100% of the image
width and therefore useless.

	In short, you should use "pretrace_start 0.08" as a starting point,
then see what happens when you raise or lower it slightly (ie in the
0.06-0.10 range for a start).

> Also you said: "Keep it at the (pretrace_start / 2^n) domain." What is
> "2^n"? I mean "n" - where is it coming from?
> 
	2^n means "2 to the nth power". Or in other words 2, 4, 8, 16...

		Jerome
- --
+------------------------- Jerome M. BERGER ---------------------+
|    mailto:jeb### [at] freefr      | ICQ:    238062172            |
|    http://jeberger.free.fr/     | Jabber: jeb### [at] jabberfr   |
+---------------------------------+------------------------------+
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (GNU/Linux)

iD8DBQFFEYCkd0kWM4JG3k8RAgYJAKCvfFoVGo9GX9a/r0rUgsEbC1ekkwCff4nU
mKo7i47cFqdhidhiTm0wtqs=
=9GDm
-----END PGP SIGNATURE-----


Post a reply to this message

From: motorsep
Subject: Re: Rendering interior spaces: lighting setup
Date: 20 Sep 2006 15:10:00
Message: <web.4511910e5ebd583ca6c42ffe0@news.povray.org>
ahh, my bad. Thank you for detailed explaination! I'll try it after work :)


Post a reply to this message

From: motorsep
Subject: Re: Rendering interior spaces: lighting setup
Date: 21 Sep 2006 19:55:01
Message: <web.4513255d5ebd583c732825210@news.povray.org>
I am about to give up ;(

Here is my latet render:

http://img144.imageshack.us/img144/3954/bedroom01jbb8.jpg

Here is radiosity settings:

radiosity {
 pretrace_start 0.08
 pretrace_end 0.005
 adaptive 2
 error_bound 1.8
 count 700
 recursion_limit 3
 brightness 1.5
        low_error_factor 0.2
        nearest_count 7
 }

Here is a sphere material around my scene:

pigment {
      gradient y
      color_map {
      [0.0   color rgb <1, 0.887, 0.653>]
      [1.0   color rgb <0.313, 0.610, 1>]

   }
translate -y*.5
scale 300*4
     }
finish {
    ambient 0.5
}

I am somewhat satisfied with quality, but I got that illumination behind
closet, there is not enough contrast on the image and lighting doesn't look
realistically :( I don;t know why and I don't know what else to do :(
I need to get results as with Indigo (at least as close as possible).
Help me please :/


Post a reply to this message

From: Tim Attwood
Subject: Re: Rendering interior spaces: lighting setup
Date: 22 Sep 2006 03:46:10
Message: <451394c2$1@news.povray.org>
> Help me please :/

You might want to look at Hildur Kolbrun Andresdottir's radiosity tutorial.
http://www.simnet.is/hildurka/content/tut1page.htm

Some important things to remember... the ambient setting in normal, non-
radiosity mode mimics ambient light, but in radiosity mode the ambient
setting in the finish of objects is the amount of light emitted. Since
most objects don't emit light, most objects in a radiosity scene should
have ambient 0. An important exception is the sky, which should emit.
The light behind the dresser looks like the ambient is not zero in some
finish near there.

Hildur's recommended settings are:

radiosity {
   brightness 2
   count 100
   error_bound 0.15
   gray_threshold 0.0
   low_error_factor 0.2
   minimum_reuse 0.015
   nearest_count 10
   recursion_limit 5
   adc_bailout 0.01
   max_sample 0.5
   media off
   normal off
   always_sample 1
   pretrace_start 0.08
   pretrace_end 0.01
}


Post a reply to this message

From: motorsep
Subject: Re: Rendering interior spaces: lighting setup
Date: 22 Sep 2006 10:00:00
Message: <web.4513ebde5ebd583ca6c42ffe0@news.povray.org>
Thank you Tim. I will go over the tutorial and I will check my materials
once again to see if I have forgotten to put ambient value n 0.


Post a reply to this message

From: "Jérôme M. Berger"
Subject: Re: Rendering interior spaces: lighting setup
Date: 22 Sep 2006 15:48:17
Message: <45143e01$1@news.povray.org>
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

motorsep wrote:
> Thank you Tim. I will go over the tutorial and I will check my materials
> once again to see if I have forgotten to put ambient value n 0.
> 
	Another possible cause for the bright area behind the closet is the
'brightness' keyword. IMO, you'd be better of using a brightness of
1 and if that is too dark, use ambient (with low values of course)
to raise the overall light level. This has two advantages:
 - you can get more control over where the scene is lighted by using
different ambient values for different objects;
 - this is more physically realistic: maximum realism would be
gotten with "brightness 1", but "recursion_limit infinite". Since
that is of course not possible, a low level of ambient light will
simulate the additional recursion levels.

		Jerome
- --
+------------------------- Jerome M. BERGER ---------------------+
|    mailto:jeb### [at] freefr      | ICQ:    238062172            |
|    http://jeberger.free.fr/     | Jabber: jeb### [at] jabberfr   |
+---------------------------------+------------------------------+
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (GNU/Linux)

iD8DBQFFFD4Ad0kWM4JG3k8RAi7lAJ0T0VU+o0meX9XnbNdBbewpJmmoPQCfaEMR
6hbUgUjNzgGCusutX2y1jyw=
=g2na
-----END PGP SIGNATURE-----


Post a reply to this message

From: Hildur K 
Subject: Re: Rendering interior spaces: lighting setup
Date: 27 Sep 2006 12:20:00
Message: <web.451aa4635ebd583c2e3296b70@news.povray.org>
I have one question:


artefacts showing up, similar to the ones you have in your latest render,
when I tried to let the light shine through glass for reflections. If you

this.


the outside as well. I have so far accepted that the outside will always be
overexposed, but you could try to cheat by using darker textures on the
outside.


better settings.

Hildur Kolbrun


Post a reply to this message

<<< Previous 5 Messages Goto Initial 10 Messages

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