1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/vis/bug22632
abv 14b741b0ef 0031454: Visualization - perceptually uniform color scale
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)
2020-03-26 19:53:27 +03:00

32 lines
750 B
Plaintext

puts "============"
puts "OCC22632"
puts "Display logarithmic colorscale."
puts "============"
puts ""
vinit View1
vclear
vaxo
# create non-logarithmic color scale with range 0-1000 and 3 intervals
vcolorscale cs -range 0 1000 3
vdump ${imagedir}/${casename}_1.png
# create logarithmic color scale with range 1-1000 and 3 intervals
vcolorscale cs -range 0 1000 3 -log 1
vdump ${imagedir}/${casename}_2.png
# create logarithmic color scales with different ranges and intervals
vcolorscale cs -range 5 200 4
vdump ${imagedir}/${casename}_3.png
vcolorscale cs -range 1 1568 8
vdump ${imagedir}/${casename}_4.png
vcolorscale cs -range 3 500 5
vdump ${imagedir}/${casename}_5.png
vcolorscale cs -range 1 1000 6
vdump ${imagedir}/${casename}_6.png