POV-Ray : Newsgroups : povray.binaries.images : Low contrast/saturation using image maps Server Time
7 Aug 2024 11:20:50 EDT (-0400)
  Low contrast/saturation using image maps (Message 1 to 5 of 5)  
From: Mike Sobers
Subject: Low contrast/saturation using image maps
Date: 28 Apr 2006 10:15:00
Message: <web.44522300198979c81009749b0@news.povray.org>
I've noticed that when I use an image map, the surface is usually very low
contrast and/or low saturation.  Is there some setting (i.e. specular -
I've tried turning specular off and it doesn't help) that has an effect
here?  How (aside from tweaking the image map) can I fix this?

The attached image shows the image map in the background and a rendering in
the foreground.  I've fixed this in the past for backgrounds by using
lightgroups and ambient = 1 for the background image map, but in this case
I need the object with the image map to interact with the light.

Any ideas?

Thanks!

Mike

Code:

#declare mars_tex = texture {
pigment {
image_map {
  jpeg "mars_nasa_jpl.jpg" // the file to read
(iff/tga/gif/png/jpeg/tiff/sys)
  map_type 1        // 0=planar, 1=spherical, 2=cylindrical, 5=torus
  interpolate 2     // 0=none, 1=linear, 2=bilinear, 4=normalized distance
  once           // for no repetitive tiling
} // image_map
}
  finish {           // (---surface finish---)
    ambient 0.05
    specular 0.2     // shiny
    roughness 1/100
  }
}

light_source {
  0*x                 // light's position (translated below)
  color rgb <255, 255, 251>/255       // light's color
  area_light
  <10*Re, 0, 0> <0, 0, 10*Re> // lights spread out across this distance (x *
z)
  20, 20                // total number of lights in grid (4x*4z = 16
lights)
  adaptive 2          // 0,1,2,3...
  circular            // make the shape of the light circular
  orient              // orient light
  translate <5*Re, 10*Re, Re>   // <x y z> position of light
}


Post a reply to this message


Attachments:
Download 'mars.jpg' (28 KB)

Preview of image 'mars.jpg'
mars.jpg


 

From: PM 2Ring
Subject: Re: Low contrast/saturation using image maps
Date: 28 Apr 2006 10:40:01
Message: <web.44522880b8182a8476ba2c900@news.povray.org>
"Mike Sobers" <sob### [at] mindspringcom> wrote:
> I've noticed that when I use an image map, the surface is usually very low
> contrast and/or low saturation.  Is there some setting (i.e. specular -
> I've tried turning specular off and it doesn't help) that has an effect
> here?  How (aside from tweaking the image map) can I fix this?

I generally just boost the diffuse value (and also ambient if I'm not using
radiosity). You can also adjust the brightness, contrast & gamma of any
pigment by converting it to a pigment function, and then using an
appropriate transfer function. Jaime's LightSys package can do this sort of
thing.

As you can imagine, this slows rendering, so you're probably better
off tweaking the image file. From the look of your Mars globe, I think you
need to boost the gamma of your source image. Or maybe it's just a funny
JPEG file...

I rendered some globes of Venus & Mars years ago, but the files are still on
my Amiga (I think).


Post a reply to this message

From: Marc Jacquier
Subject: Re: Low contrast/saturation using image maps
Date: 28 Apr 2006 15:21:03
Message: <44526b1f$1@news.povray.org>

news:web.44522300198979c81009749b0@news.povray.org...

I set diffuse 1 (default is 0.6)

Marc


Post a reply to this message

From: Gail Shaw
Subject: Re: Low contrast/saturation using image maps
Date: 28 Apr 2006 15:51:52
Message: <44527258@news.povray.org>
"Mike Sobers" <sob### [at] mindspringcom> wrote in message
news:web.44522300198979c81009749b0@news.povray.org...

Try this finish

finish {ambient 0 diffuse 0.9 brilliance 0.75}


Post a reply to this message

From: gonzo
Subject: Re: Low contrast/saturation using image maps
Date: 29 Apr 2006 16:15:00
Message: <web.4453c820b8182a8479b4a70c0@news.povray.org>
"Mike Sobers" <sob### [at] mindspringcom> wrote:

> I need the object with the image map to interact with the light.
>
> Any ideas?
>
> Thanks!
>
> Mike
>

In addition to the above comments, try using a normal with the same image as
a bump_map.  That will provide some accent around small details.

RG


Post a reply to this message

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