POV-Ray : Newsgroups : povray.binaries.images : Background Server Time
1 Aug 2024 22:21:03 EDT (-0400)
  Background (Message 1 to 10 of 13)  
Goto Latest 10 Messages Next 3 Messages >>>
From: H  Karsten
Subject: Background
Date: 23 Jan 2008 09:30:00
Message: <web.47974e5ff335b78077d400d30@news.povray.org>
A background for a street scene.
The next step is to put people and cars into the front and maybe some voxels for
the smoke.

-holger-


Post a reply to this message


Attachments:
Download 'backfround.jpg' (187 KB)

Preview of image 'backfround.jpg'
backfround.jpg


 

From: stbenge
Subject: Re: Background
Date: 23 Jan 2008 22:24:52
Message: <47980504$1@news.povray.org>
H. Karsten wrote:
> A background for a street scene.
> The next step is to put people and cars into the front and maybe some voxels for
> the smoke.
> 
> -holger-

Hey, that's looking good. How much of this is generated automatically?

Sam


Post a reply to this message

From: Thomas de Groot
Subject: Re: Background
Date: 24 Jan 2008 02:54:37
Message: <4798443d$1@news.povray.org>
Aztec or Maya!!

Excellent!

Thomas

"H. Karsten" <h-karsten()web.de> schreef in bericht 
news:web.47974e5ff335b78077d400d30@news.povray.org...
>A background for a street scene.
> The next step is to put people and cars into the front and maybe some 
> voxels for
> the smoke.
>
> -holger-
>
>


Post a reply to this message

From: Jörg 'Yadgar' Bleimann
Subject: Re: Background
Date: 24 Jan 2008 04:49:24
Message: <47985f24$1@news.povray.org>
High!

H. Karsten schrieb:
> A background for a street scene.

Weird... looks like proto-Incan ruins somewhere on the windswept 
Bolivian Altiplano at almost 5000 metres above sea level, given the 
ultra-deep blue sky!

Or is it a scrapyard for 1970s sci-fi greebled spaceships?

See you in Khyberspace - http://www.khyberspace.de

Yadgar

Now playing: Hey Cisco, live 199? (Deep Purple)


Post a reply to this message

From: Jan Dvorak
Subject: Re: Background
Date: 24 Jan 2008 05:51:33
Message: <47986db5@news.povray.org>

> High!
> 
> H. Karsten schrieb:
>> A background for a street scene.
> 
> Weird... looks like proto-Incan ruins somewhere on the windswept 
> Bolivian Altiplano at almost 5000 metres above sea level, given the 
> ultra-deep blue sky!
> 
maybe the picture is gamma-corrected for gamma 4.84 displays


Post a reply to this message

From: H  Karsten
Subject: Re: Background
Date: 24 Jan 2008 06:05:00
Message: <web.4798700c6c3f91fe811410630@news.povray.org>
The object is completely automatic generated with several medical programs for
MRT and CT data.

It also looks to me like its some ruins in the desert. Cars and people should
share this look. (maybe an India style or something..)

-holger-


Post a reply to this message

From: H  Karsten
Subject: Re: Background
Date: 24 Jan 2008 06:10:01
Message: <web.479871676c3f91fe811410630@news.povray.org>
Jan Dvorak <jan### [at] centrumcz> wrote:

> > High!
> >
> > H. Karsten schrieb:
> >> A background for a street scene.
> >
> > Weird... looks like proto-Incan ruins somewhere on the windswept
> > Bolivian Altiplano at almost 5000 metres above sea level, given the
> > ultra-deep blue sky!
> >
> maybe the picture is gamma-corrected for gamma 4.84 displays

Here is the scene, the gamma was 2. (without the blocs, this would be lots of
megabytes...)

#version 3.5;

//h. kasten, Berlin
//1440x600

#include "colors.inc"



global_settings {assumed_gamma 2 radiosity {pretrace_start 1 pretrace_end
0.0000001 count 50 error_bound 0.05 recursion_limit 10 brightness 1}}



camera {

  ultra_wide_angle

  //omnimax

  location  <-0.25, 0.01, -2>*1.5

  direction 1.5*z

  right     x*image_width/image_height

  angle 70



 aperture 0.02

 blur_samples 64

 focal_point <-0.05, 0.6,  0.0>

 confidence 0.5

 variance 1/1280



//  look_at   <-0.05, 0.6,  0.0>

  look_at   <-0.25, 0.6,  0.0>



}



light_source {

  <0, 0, 0>

  color rgb <1, 1, 1>

  translate <-30, 30, -60>

}



sky_sphere {

  pigment {

    gradient y

    color_map {

      [0.0 rgb <0.7,0.65,0.5>]

      [0.25 rgb <0.0,0.1,0.8>]

      [0.5 rgb <0.0,0.1,0.8>*0.5]

      [1.0 rgb 0]

    }

  turbulence .325

  translate <0,-0.2,0>

  scale 1.5

  octaves 10

  lambda 3

  }

  rotate <0,-10,0>

}

plane {

  y, 0

pigment { color rgb <0.7,0.65,0.5>*1.5 }

finish{ambient 0 diffuse 1}

}


Post a reply to this message

From: Jan Dvorak
Subject: Re: Background
Date: 24 Jan 2008 08:36:48
Message: <47989470$1@news.povray.org>
you should always use assumed_gamma 1 so that the scene renders accurately
H. Karsten napsal(a):
> Jan Dvorak <jan### [at] centrumcz> wrote:

>>> High!
>>>
>>> H. Karsten schrieb:
>>>> A background for a street scene.
>>> Weird... looks like proto-Incan ruins somewhere on the windswept
>>> Bolivian Altiplano at almost 5000 metres above sea level, given the
>>> ultra-deep blue sky!
>>>
>> maybe the picture is gamma-corrected for gamma 4.84 displays
> 
> Here is the scene, the gamma was 2. (without the blocs, this would be lots of
> megabytes...)
> 
> #version 3.5;
> 
> //h. kasten, Berlin
> //1440x600
> 
> #include "colors.inc"
> 
> 
> 
> global_settings {assumed_gamma 2 radiosity {pretrace_start 1 pretrace_end
> 0.0000001 count 50 error_bound 0.05 recursion_limit 10 brightness 1}}


Post a reply to this message

From: H  Karsten
Subject: Re: Background
Date: 24 Jan 2008 09:05:02
Message: <web.4798994b6c3f91fe811410630@news.povray.org>
Jan Dvorak <jan### [at] centrumcz> wrote:
> you should always use assumed_gamma 1 so that the scene renders accurately

Yes, but I realy love extreme deep blue sky's and high contrast images.
It's the same way I would make photographic images.

Combine a deep blue sky with an ultra_whide_angel camera - it looks always great

:)


Post a reply to this message

From: [GDS|Entropy]
Subject: Re: Background
Date: 25 Jan 2008 21:24:00
Message: <479a99c0$1@news.povray.org>
Hello,

Are those programs free?

Thanks,
Ian

"H. Karsten" <h-karsten()web.de> wrote in message 
news:web.4798700c6c3f91fe811410630@news.povray.org...
> The object is completely automatic generated with several medical programs 
> for
> MRT and CT data.
>
> It also looks to me like its some ruins in the desert. Cars and people 
> should
> share this look. (maybe an India style or something..)
>
> -holger-
>
>


Post a reply to this message

Goto Latest 10 Messages Next 3 Messages >>>

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