POV-Ray : Newsgroups : povray.advanced-users : Projecting sRGB gamut into xyY space Server Time
28 Mar 2024 05:57:17 EDT (-0400)
  Projecting sRGB gamut into xyY space (Message 1 to 6 of 6)  
From: Mike Horvath
Subject: Projecting sRGB gamut into xyY space
Date: 28 Mar 2017 22:36:14
Message: <58db1d9e$1@news.povray.org>
I am once again projecting the sRGB gamut into xyY space. This time, 
however, I am generating a mesh parametrically instead of creating an 
isosurface.

All goes well until R, G and B are all equal to zero, since xyY space 
doesn't like this coordinate.

How should I handle this case? Should I just skip it and not render a 
triangle there? Or is there a better way to handle it?

Thanks!


Mike


Post a reply to this message

From: clipka
Subject: Re: Projecting sRGB gamut into xyY space
Date: 29 Mar 2017 12:18:43
Message: <58dbde63@news.povray.org>
Am 29.03.2017 um 04:36 schrieb Mike Horvath:
> I am once again projecting the sRGB gamut into xyY space. This time,
> however, I am generating a mesh parametrically instead of creating an
> isosurface.
> 
> All goes well until R, G and B are all equal to zero, since xyY space
> doesn't like this coordinate.
> 
> How should I handle this case? Should I just skip it and not render a
> triangle there? Or is there a better way to handle it?

My recommendation would be to go as close to 0 as you can (e.g. 1e-6).
If you feel like it, you can add some hard-coded triangles from there to
(x,y,Y)=(0,0,0) to get a closed shape.


Post a reply to this message

From: Mike Horvath
Subject: Re: Projecting sRGB gamut into xyY space
Date: 29 Mar 2017 19:59:07
Message: <58dc4a4b@news.povray.org>
On 3/29/2017 12:18 PM, clipka wrote:
> Am 29.03.2017 um 04:36 schrieb Mike Horvath:
>> I am once again projecting the sRGB gamut into xyY space. This time,
>> however, I am generating a mesh parametrically instead of creating an
>> isosurface.
>>
>> All goes well until R, G and B are all equal to zero, since xyY space
>> doesn't like this coordinate.
>>
>> How should I handle this case? Should I just skip it and not render a
>> triangle there? Or is there a better way to handle it?
>
> My recommendation would be to go as close to 0 as you can (e.g. 1e-6).
> If you feel like it, you can add some hard-coded triangles from there to
> (x,y,Y)=(0,0,0) to get a closed shape.
>

Plotting the triangles to (x,y,Y)=(0,0,0) or very near there is not 
going to produce nice/correct results. See the attached image. Those 
triangles would look very much out of place.


Mike


Post a reply to this message


Attachments:
Download 'cie_srgb_gamut_xyy_space_cube_mesh000.png' (37 KB)

Preview of image 'cie_srgb_gamut_xyy_space_cube_mesh000.png'
cie_srgb_gamut_xyy_space_cube_mesh000.png


 

From: clipka
Subject: Re: Projecting sRGB gamut into xyY space
Date: 30 Mar 2017 09:09:55
Message: <58dd03a3$1@news.povray.org>
Am 30.03.2017 um 01:59 schrieb Mike Horvath:
> On 3/29/2017 12:18 PM, clipka wrote:
>> Am 29.03.2017 um 04:36 schrieb Mike Horvath:
>>> I am once again projecting the sRGB gamut into xyY space. This time,
>>> however, I am generating a mesh parametrically instead of creating an
>>> isosurface.
>>>
>>> All goes well until R, G and B are all equal to zero, since xyY space
>>> doesn't like this coordinate.
>>>
>>> How should I handle this case? Should I just skip it and not render a
>>> triangle there? Or is there a better way to handle it?
>>
>> My recommendation would be to go as close to 0 as you can (e.g. 1e-6).
>> If you feel like it, you can add some hard-coded triangles from there to
>> (x,y,Y)=(0,0,0) to get a closed shape.
>>
> 
> Plotting the triangles to (x,y,Y)=(0,0,0) or very near there is not
> going to produce nice/correct results. See the attached image. Those
> triangles would look very much out of place.

The "closure" to (0,0,0) was only suggested as a final add-on.

What you need to do is take R,G,B to a very small value (e.g. 1e-6)
separately.


It may be sufficient to plot the (distorted) cube as usual, but every
time /any/ R,G,B coordinate drops to zero you replace that value with
1e-6 instead.


Then again maybe that's not enough, and you may need to increase your
cube's resolution near (0,0,0).


Post a reply to this message

From: scott
Subject: Re: Projecting sRGB gamut into xyY space
Date: 3 Apr 2017 08:18:52
Message: <58e23dac@news.povray.org>
>> My recommendation would be to go as close to 0 as you can (e.g. 1e-6).
>> If you feel like it, you can add some hard-coded triangles from there to
>> (x,y,Y)=(0,0,0) to get a closed shape.
>>
>
> Plotting the triangles to (x,y,Y)=(0,0,0) or very near there is not
> going to produce nice/correct results. See the attached image. Those
> triangles would look very much out of place.

In my mind, the point RGB=0,0,0 corresponds to the surface that "caps" 
the bottom of your 3D shape. ie the one where Y=0 and is bordered by the 
classic "horseshoe". Any point on that "cap" would be RGB=0 because Y=0.


Post a reply to this message

From: Mike Horvath
Subject: Re: Projecting sRGB gamut into xyY space
Date: 3 Apr 2017 13:35:00
Message: <58e287c4$1@news.povray.org>
On 4/3/2017 8:18 AM, scott wrote:
>>> My recommendation would be to go as close to 0 as you can (e.g. 1e-6).
>>> If you feel like it, you can add some hard-coded triangles from there to
>>> (x,y,Y)=(0,0,0) to get a closed shape.
>>>
>>
>> Plotting the triangles to (x,y,Y)=(0,0,0) or very near there is not
>> going to produce nice/correct results. See the attached image. Those
>> triangles would look very much out of place.
>
> In my mind, the point RGB=0,0,0 corresponds to the surface that "caps"
> the bottom of your 3D shape. ie the one where Y=0 and is bordered by the
> classic "horseshoe". Any point on that "cap" would be RGB=0 because Y=0.
>

I couldn't figure out what values to use for x and y, so I just skipped 
those points.


Mike


Post a reply to this message

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