POV-Ray : Newsgroups : povray.binaries.images : An experiment in monochrome Server Time
19 Mar 2024 07:46:00 EDT (-0400)
  An experiment in monochrome (Message 1 to 10 of 25)  
Goto Latest 10 Messages Next 10 Messages >>>
From: m@b
Subject: An experiment in monochrome
Date: 7 Jun 2021 23:21:41
Message: <60bee245@news.povray.org>
Trying to emulate mechanical shading.

m@


Post a reply to this message


Attachments:
Download 'test clown 01.png' (109 KB) Download 'test face 01.png' (142 KB) Download 'test spotlights 01.png' (165 KB)

Preview of image 'test clown 01.png'
test clown 01.png

Preview of image 'test face 01.png'
test face 01.png

Preview of image 'test spotlights 01.png'
test spotlights 01.png


 

From: ingo
Subject: Re: An experiment in monochrome
Date: 8 Jun 2021 01:26:13
Message: <XnsAD434BA67973Dseed7@news.povray.org>
in news:60bee245@news.povray.org m@b wrote:

> Trying to emulate mechanical shading.
> 
> m@
>

Very nice.

Ingo


Post a reply to this message

From: Mr
Subject: Re: An experiment in monochrome
Date: 8 Jun 2021 04:25:00
Message: <web.60bf292c23b82ed516086ed03f378f2@news.povray.org>
"m@b" <sai### [at] googlemailcom> wrote:
> Trying to emulate mechanical shading.
>
> m@

Nice!
How does it work?


Post a reply to this message

From: m@b
Subject: Re: An experiment in monochrome
Date: 8 Jun 2021 05:32:15
Message: <60bf391f$1@news.povray.org>
On 08/06/2021 4:24 pm, Mr wrote:
> "m@b" <sai### [at] googlemailcom> wrote:
>> Trying to emulate mechanical shading.
>>
>> m@
> 
> Nice!
> How does it work?
> 

The image is put into a function:

#declare MyTesti = function
{ pigment
   { image_map
     { "My image.png"  map_type 0
       once
     }
     // scale <1,1,1>
   } 

}

(I am not sure where this function came from - I used it many years ago 
in another project.)

These 4 functionas contain the information for each colour:

#declare TestR = function {MyTesti(x,y,z).red}      // Extract colours
#declare TestG = function {MyTesti(x,y,z).green}
#declare TestB = function {MyTesti(x,y,z).blue}
#declare TestK = function {MyTesti(x,y,z).grey}

Each point on the image is interrogated and a sphere is drawn.
The sphere is scaled by a constant in X and by brightness in Y.
The sphere is rotated depending on the predominant colour: R, G, B or 
neutral. (Rotation must be a multiple of 45 degrees or the spheres don't 
join up to make a line.)
The sphere is scaled to match the aspect of the input image.

I can post the code, but it needs to be cleaned up first.

m@


Post a reply to this message

From: Paolo Gibellini
Subject: Re: An experiment in monochrome
Date: 9 Jun 2021 03:08:49
Message: <60c06901$1@news.povray.org>
m@b wrote on 08/06/2021 11:32:
> On 08/06/2021 4:24 pm, Mr wrote:
>> "m@b" <sai### [at] googlemailcom> wrote:
>>> Trying to emulate mechanical shading.
>>>
>>> m@
>>
>> Nice!
>> How does it work?
>>
> 
> The image is put into a function:
> 
> #declare MyTesti = function
> { pigment






> }
> 
> (I am not sure where this function came from - I used it many years ago 
> in another project.)
> 
> These 4 functionas contain the information for each colour:
> 

> #declare TestG = function {MyTesti(x,y,z).green}
> #declare TestB = function {MyTesti(x,y,z).blue}
> #declare TestK = function {MyTesti(x,y,z).grey}
> 
> Each point on the image is interrogated and a sphere is drawn.
> The sphere is scaled by a constant in X and by brightness in Y.
> The sphere is rotated depending on the predominant colour: R, G, B or 
> neutral. (Rotation must be a multiple of 45 degrees or the spheres don't 
> join up to make a line.)
> The sphere is scaled to match the aspect of the input image.
> 
> I can post the code, but it needs to be cleaned up first.
> 
> m@
> 
> 
> 

The results are very promising, looking in the code would be 
interesting, thank you,
   Paolo


Post a reply to this message

From: m@b
Subject: Re: An experiment in monochrome
Date: 9 Jun 2021 05:09:23
Message: <60c08543@news.povray.org>
Here is the script:

// author:  Matthew Bradwell
// date:    2021
//--------------------------------------------------------------------------
#version 3.7;
global_settings{ assumed_gamma 1.0 }
#default{ finish{ ambient 0.1 diffuse 0.9 }}
// camera ------------------------------------------------------------------
camera {perspective
     angle 28
     location  <0,5,-30>
     look_at   <0,5,0>
     right x*image_width/image_height}

#background{rgb<0.5,0.5,1>*1.5}

//---------------------------------------------------------------------------
//---------------------------- objects in scene ----------------------------
//---------------------------------------------------------------------------


// Input fie name and dimensions

//#declare In_Image = "Face 1a.jpg";  #declare In_Height = 1575; 
#declare In_Width  = 1587;
#declare In_Image = "RGBColors 3.jpg";  #declare In_Height = 811; 
#declare In_Width  = 925;

#declare In_Ratio  = In_Width/In_Height;

// Reference image bottom right
box{<0,0,0>,<1,1,0.01> pigment{image_map {In_Image map_type 0}} scale 
<In_Ratio,1,1>*2 translate<5,0,-1> finish{emission 1}}

#declare MyTesti = function    // In order to get the HF_ macros to read
{ pigment                      // imported pictures they have to be
   { image_map                  // declared this way.
     { In_Image  map_type 0 // <----
       once
     }
   } 

}

#declare TestR = function {MyTesti(x,y,z).red}      // Extract colours
#declare TestG = function {MyTesti(x,y,z).green}
#declare TestB = function {MyTesti(x,y,z).blue}
#declare TestK = function {MyTesti(x,y,z).grey}


#declare Resolution = 0.015;        // Spacing between the lines, 
remember image maps are 1 x 1
#declare Gain = 1.3;                // Line thickness
#declare Bias = 0.07;               // To increase the output if very 
light areas are not drawing
#declare Grey_threshold = 0.003;    // Greyness is detected if R, G & B 
are equal, this sets the acceptance level


#for(X, 0, 1, Resolution) 
         // Scan the functions
     #for(Y, 0, 1, Resolution)

         #declare Brightness =  Bias+(Gain*(1-TestK(X,Y,0)));

         #declare GreyTest = 0.001 + abs(TestK(X,Y,0) - 
abs((TestR(X,Y,0)+TestG(X,Y,0)-TestB(X,Y,0))));

         #if(GreyTest < Grey_threshold) 
          // Decide the line angle
             #declare Angle = 0; 
          // Grey (Incuding black and white)
         #else
             #if(TestR(X,Y,0) > TestG(X,Y,0) & TestR(X,Y,0) > TestB(X,Y,0))
                 #declare Angle = 45; #declare Brightness = 
Brightness*0.8;      // Red
             #else
                 #if(TestG(X,Y,0) > TestB(X,Y,0))
                     #declare Angle = 90; 
          // Green
                 #else
                     #declare Angle = -45; #declare Brightness = 
Brightness*0.8; // Blue
                 #end
             #end
         #end
         // Draw the line segment
         sphere{<0,0,0>,0.04 pigment{rgb <0,0,0.5>} 
scale<8,Brightness,0.1> rotate<0,0,Angle> translate<X-0.5,Y,0>*10 
finish{emission 1} scale<In_Ratio,1,1>}

     #end
#end


Post a reply to this message

From: Jörg "Yadgar" Bleimann
Subject: Re: An experiment in monochrome
Date: 9 Jun 2021 13:00:17
Message: <60c0f3a1$1@news.povray.org>
Hi(gh)!

On 09.06.21 11:09, m@b wrote:
 > // Reference image bottom right
 > box{<0,0,0>,<1,1,0.01> pigment{image_map {In_Image map_type 0}} scale 
<In_Ratio,1,1>*2 translate<5,0,-1> finish{emission 1}}
 >
 > #declare MyTesti = function    // In order to get the HF_ macros to read
 > { pigment                      // imported pictures they have to be
 >   { image_map                  // declared this way.
 >     { In_Image  map_type 0 // <----
 >       once
 >     }
 >   }
 > }
 >
I had to add the file type in the image_map blocks, now it runs fine, 
see attachment!

May I use this "filter" to process one of my bicycle handle cam videos 
and publish it on Vimeo, of course crediting you?

See you in Khyberspace!

Yadgar

Now playing: Horizon (Jon and Vangelis)


Post a reply to this message


Attachments:
Download 'rastered_yadgar2011.png' (68 KB)

Preview of image 'rastered_yadgar2011.png'
rastered_yadgar2011.png


 

From: Bald Eagle
Subject: Re: An experiment in monochrome
Date: 9 Jun 2021 14:30:00
Message: <web.60c1079d23b82ed51f9dae3025979125@news.povray.org>
Hi Matt,

> > "m@b" <sai### [at] googlemailcom> wrote:
> >> Trying to emulate mechanical shading.

This is clever!  I like it.  :)

> The image is put into a function:
>
> #declare MyTesti = function
> { pigment
>    { image_map
>      { "My image.png"  map_type 0
>        once
>      }
>      // scale <1,1,1>
>    }
>
> }
>
> (I am not sure where this function came from - I used it many years ago
> in another project.)

I see in your posted code that you comment that "map_type 0" is required - but
the docs say that this is the default planar mapping, so maybe it's not actually
a requirement?


> Each point on the image is interrogated and a sphere is drawn.
> The sphere is scaled by a constant in X and by brightness in Y.
> The sphere is rotated depending on the predominant colour: R, G, B or
> neutral. (Rotation must be a multiple of 45 degrees or the spheres don't
> join up to make a line.)
> The sphere is scaled to match the aspect of the input image.

I had this bouncing around in my head today,  and maybe it would be faster to
make some pigment patterns and use a pigment map instead of sphere primitives.

http://news.povray.org/povray.binaries.images/thread/%3Cweb.5a7774f01a0c102c5cafe28e0%40news.povray.org%3E/

You could even just make a single linear pattern and the others would just be
rotations or scales of it. (have the line thickness be dependent on the color
channel value)

The other thing I was thinking was that you might also be able to get an outline
or shape-following effect if you calculated not only the value of any given
pixel, but the gradient of the function there as well.  Then you could make the
lines perpendicular to the gradient / tangent to the curve.

I know TOK wrote the gradient functions in the distributed include files, and
there are edge-finding algorithms that give you the gradient of the image as a
bonus.

This looks like something super fun to play with, with a lot of potential for
future development!  Good work  :)


Post a reply to this message

From: Tor Olav Kristensen
Subject: Re: An experiment in monochrome
Date: 9 Jun 2021 16:30:00
Message: <web.60c1247b23b82ed54ca121e789db30a9@news.povray.org>
"Bald Eagle" <cre### [at] netscapenet> wrote:
>...
> I know TOK wrote the gradient functions in the distributed include files, and
> there are edge-finding algorithms that give you the gradient of the image as a
> bonus.
>...

Hi Bill

Please note that most of the credit for the Vector analysis macros should go to
Christoph Hormann, which did the heavy lifting. I just suggested some
corrections.

Btw.:
I agree with you; it may be that experimenting with pigment maps will be
rewarding here.

--
Tor Olav
http://subcube.com
https://github.com/t-o-k


Post a reply to this message

From: m@b
Subject: Re: An experiment in monochrome
Date: 9 Jun 2021 22:43:00
Message: <60c17c34@news.povray.org>
On 10/06/2021 1:00 am, Jörg "Yadgar" Bleimann wrote:

..........

> 
> May I use this "filter" to process one of my bicycle handle cam videos 
> and publish it on Vimeo, of course crediting you?
> 
> See you in Khyberspace!
> 
> Yadgar
> 
> Now playing: Horizon (Jon and Vangelis)

Yes - of course - post a link.

My next thought was to try it with an animation.

m@


Post a reply to this message


Attachments:
Download 'my_face_a.png' (144 KB)

Preview of image 'my_face_a.png'
my_face_a.png


 

Goto Latest 10 Messages Next 10 Messages >>>

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