POV-Ray : Newsgroups : povray.text.scene-files : ugly moire effects Server Time
30 Jun 2024 04:56:09 EDT (-0400)
  ugly moire effects (Message 1 to 4 of 4)  
From: wich
Subject: ugly moire effects
Date: 8 Aug 2002 17:48:03
Message: <3d52e713@news.povray.org>
Hi,

I have a problem with Moire effects with usign a texture with a fine
vertical striping (simulating a trapeziod shaped vertical cladding).

Any method to prevent this ugly Moire effects (see sample input)?

Here is a photo that shows what I approximaty want to achieve with my Povray
model:
http://www.priclad.nl/images/wallnikeklein.jpg

(the photo has a horizontal cladding, whilst my model has a vertical
cladding)

Any suggestions are very welcome!


// Moire problem


global_settings { assumed_gamma 1.6}     // 2.2

#include "shapes.inc"
#include "colors.inc"
#include "textures.inc"




#declare distance_view=

camera{location <100, 12, 70>
   direction <0.0, 0.0, 1.0>
   up  <0.0, 1.0, 0.0>
   right <4/3, 0.0, 0.0>
 look_at <15, 3, 30>  }


camera {distance_view}

light_source {<200.0, 200.0, -150.0> colour red 1 green 1 blue 1 }






plane { y, 0
texture {pigment {color red .7 green .7 blue .7}
 finish {
    ambient 0.5
    diffuse 0.5
    phong 0.75
    phong_size 25

  }  }   }



union{
box{ <0, 0, 0>  <10,  15, 60> }
box{ <0, 0, 0>  <10,  7, 60>  translate <75, 0, 10>}
//                                                    ___     ___
// texture simulating trapeziod vertical cladding ___/   \___/   \___
//

 texture{
   pigment{
     gradient z  color_map{
     [0.    red 172/255     green 182/255     blue 184/255]
     [0.24  red 172/255     green 182/255     blue 184/255]
     [0.242 red 172/255*1.2 green 182/255*1.2 blue 184/255*1.2]
     [0.48  red 172/255*1.2 green 182/255*1.2 blue 184/255*1.2]
     [0.482 red 172/255     green 182/255     blue 184/255]
     [0.76  red 172/255     green 182/255     blue 184/255]
     [0.762 red 172/255*0.8 green 182/255*0.8 blue 184/255*0.8]
     [1.0   red 172/255*0.8 green 182/255*0.8 blue 184/255*0.8]}     scale
0.24
   }

  finish {
    ambient 0.5
    diffuse 0.5
    phong 0.75
    phong_size 25

  }  }
}


Post a reply to this message


Attachments:
Download 'moire.pov.txt' (2 KB)

From: hughes b
Subject: Re: ugly moire effects
Date: 8 Aug 2002 18:28:20
Message: <3d52f084@news.povray.org>
"wich" <wich_@no-spam-hotmail.com> wrote in message
news:3d52e713@news.povray.org...
>
> I have a problem with Moire effects with usign a texture with a fine
> vertical striping (simulating a trapeziod shaped vertical cladding).
>
> Any method to prevent this ugly Moire effects (see sample input)?
>
> Here is a photo that shows what I approximaty want to achieve with my
Povray
> model:
> http://www.priclad.nl/images/wallnikeklein.jpg

It isn't really something wrong with your scene file or in fact anything
much you can do to prevent it within the script. Aside from using more width
in the lines, or less color contrast (except then I believe AA [see below]
will not clean it up as well as high contrast would, a bit give and take
there).

What the trouble is involves antialiasing and you can use far more
refinement of that than the default amount to try and eliminate the moire.
Try +a0.1 +r5 and compare that to your image from before, assuming you did
only use default AA or none at all. For the INI settings, in case you are
using a INI file with that render, it would be:

Antialias=On
Antialias_Threshold=0.1
Antialias_Depth=5
Sampling_Method=1
Jitter=1.0

Note that Jitter (or +j1.0) should help to randomize pixels along edges and
so scatter the moire out some. You could also try Sampling_Method=2 (+am2)
and see if that results in a better rendering for you. If you use the second
"method" lower the Antialias_Depth to 3. Then from there you can increase it
if rendering isn't too slow for you and better results are apparent.

Read at section 5.2.6.4 Anti-Aliasing Options of the Scene Help to learn
about all this.

P.S. questions of this sort can get more response at the povray.general
group. Hopefully I've helped you out anyway.


Post a reply to this message

From: Warp
Subject: Re: ugly moire effects
Date: 8 Aug 2002 20:22:35
Message: <3d530b4a@news.povray.org>
AFAIK the only way of getting completely rid of the moire-effect in
extreme cases like this is to use +a0.0 +am2
  Of course that's a bit slow to render.

-- 
#macro N(D)#if(D>99)cylinder{M()#local D=div(D,104);M().5,2pigment{rgb M()}}
N(D)#end#end#macro M()<mod(D,13)-6mod(div(D,13)8)-3,10>#end blob{
N(11117333955)N(4254934330)N(3900569407)N(7382340)N(3358)N(970)}//  - Warp -


Post a reply to this message

From: wich
Subject: Re: ugly moire effects
Date: 10 Aug 2002 06:11:08
Message: <3d54e6bc@news.povray.org>
Hi Hugh and Warp,

Thanks for your help. The render options Warp provided (+a0.0 +am2), did
indeed resolve the moire pattern problem completely (at the cost of a long
render time).



"wich" <wich_@no-spam-hotmail.com> wrote in message
news:3d52e713@news.povray.org...
> Hi,
>
> I have a problem with Moire effects with usign a texture with a fine
> vertical striping (simulating a trapeziod shaped vertical cladding).
>
> Any method to prevent this ugly Moire effects (see sample input)?
>
> Here is a photo that shows what I approximaty want to achieve with my
Povray
> model:
> http://www.priclad.nl/images/wallnikeklein.jpg
>
> (the photo has a horizontal cladding, whilst my model has a vertical
> cladding)
>
> Any suggestions are very welcome!
>
>
> // Moire problem
>
>
> global_settings { assumed_gamma 1.6}     // 2.2
>
> #include "shapes.inc"
> #include "colors.inc"
> #include "textures.inc"
>
>
>
>
> #declare distance_view=
>
> camera{location <100, 12, 70>
>    direction <0.0, 0.0, 1.0>
>    up  <0.0, 1.0, 0.0>
>    right <4/3, 0.0, 0.0>
>  look_at <15, 3, 30>  }
>
>
> camera {distance_view}
>
> light_source {<200.0, 200.0, -150.0> colour red 1 green 1 blue 1 }
>
>
>
>
>
>
> plane { y, 0
> texture {pigment {color red .7 green .7 blue .7}
>  finish {
>     ambient 0.5
>     diffuse 0.5
>     phong 0.75
>     phong_size 25
>
>   }  }   }
>
>
>
> union{
> box{ <0, 0, 0>  <10,  15, 60> }
> box{ <0, 0, 0>  <10,  7, 60>  translate <75, 0, 10>}
> //                                                    ___     ___
> // texture simulating trapeziod vertical cladding ___/   \___/   \___
> //
>
>  texture{
>    pigment{
>      gradient z  color_map{
>      [0.    red 172/255     green 182/255     blue 184/255]
>      [0.24  red 172/255     green 182/255     blue 184/255]
>      [0.242 red 172/255*1.2 green 182/255*1.2 blue 184/255*1.2]
>      [0.48  red 172/255*1.2 green 182/255*1.2 blue 184/255*1.2]
>      [0.482 red 172/255     green 182/255     blue 184/255]
>      [0.76  red 172/255     green 182/255     blue 184/255]
>      [0.762 red 172/255*0.8 green 182/255*0.8 blue 184/255*0.8]
>      [1.0   red 172/255*0.8 green 182/255*0.8 blue 184/255*0.8]}     scale
> 0.24
>    }
>
>   finish {
>     ambient 0.5
>     diffuse 0.5
>     phong 0.75
>     phong_size 25
>
>   }  }
> }
>
>
>
>


Post a reply to this message

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