mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Support of CIE Lab and Lch color spaces is introduced in Quantity_Color: - Enumeration Quantity_TypeOfColor is extended by new values representing CIE Lab and Lch color spaces (with D65 2 deg illuminant). - Conversion of RGB color to and from these color spaces is implemented in Quantity_Color class (within existing API). - Color difference calculation using CIE Delta E 200 formula is implemented in method DeltaE2000(). New methods MakeUniformColors() and SetUniformColors() are added in class AIS_ColorScale, generating and setting color scale based on colors of the same lightness in CIE Lch color model. DRAW commands vcolorconvert and vcolordiff are added to perform conversions and compute difference, respectively. A new option -uniform is added in DRAW command vcolorscale, to set uniform color scale. Added test grid v3d colors (color conversions and difference), test bugs vis bug31454 (uniform color scale)
24 lines
766 B
Plaintext
24 lines
766 B
Plaintext
puts "============"
|
|
puts "0031454: Visualization - perceptually uniform color scale"
|
|
puts "============"
|
|
puts ""
|
|
|
|
vclear
|
|
vinit View1 -width 600
|
|
#vsetcolorbg 1 1 1
|
|
vaxo
|
|
|
|
set nbcolors 10
|
|
|
|
# create default color scale with 20 steps
|
|
vcolorscale hsl -range 0 1 $nbcolors -xy 0 0 -title HSL
|
|
|
|
# create color scales with uniform lightness
|
|
vcolorscale lch30 -range 0 1 $nbcolors -xy 100 0 -uniform 30 300 40 -title L=30
|
|
vcolorscale lch40 -range 0 1 $nbcolors -xy 200 0 -uniform 40 300 40 -title L=40
|
|
vcolorscale lch50 -range 0 1 $nbcolors -xy 300 0 -uniform 50 300 40 -title L=50
|
|
vcolorscale lch60 -range 0 1 $nbcolors -xy 400 0 -uniform 60 300 40 -title L=60
|
|
vcolorscale lch70 -range 0 1 $nbcolors -xy 500 0 -uniform 70 300 40 -title L=70
|
|
|
|
vdump ${imagedir}/${casename}.png
|