mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Removed testgrids 'bugs/vis' and '3rdparty'; tests have been redistributed across other grids. Moved testgrid 'v3d/ivtk' into dedicated 'vtk/ivtk'. Added testgrid 'vselect' dedicated to 3D viewer picking/selection functionality and filled with tests from 'v3d/vertex', 'v3d/face' and similar groups. Added testgrid 'opengl' dedicated to OpenGL driver low-level functionality (GLSL programs and similar) and filled with tests from 'v3d/glsl', 'v3d/raytrace', '3rdparty/fonts', 'bugs/vis' (portion) and similar. Added testgrid 'opengles3' dedicated to OpenGL ES 3.0 driver low-level functionality and reusing tests from 'opengl' testgrid. Subgroup 'opengles3/raytrace' is disabled on Windows, as Ray-Tracing currently requires OpenGL ES 3.2. while ANGLE library implements only OpenGL ES 3.0. Added testgrid 'opengles2' dedicated to OpenGL ES 2.0 driver low-level functionality and reusing a limited subset of passing tests from 'opengl' testgrid. Currently testgrid is activated only on Windows platform when using ANGLE library (properietary OpenGL ES drivers do not allow creation of restricted 2.0 context). Test cases have been cleaned out to put bug description into log, to properly load necessary plugins and to explicitly dump viewer.
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# Check conversion of RGB colors to CIE Lab color space
|
|
|
|
pload VISUALIZATION
|
|
|
|
# Samples are obtained (with Ref. White D65, Gamma = 1 for linear RGB) using
|
|
# http://brucelindbloom.com/index.html?ColorCalculator.html
|
|
set rgb_to_lab_samples {
|
|
{ # black, white, 50% gray }
|
|
{ {0 0 0} {0 0 0} }
|
|
{ {1 1 1} {100 0 0} }
|
|
{ {0.5 0.5 0.5} {76.0693 0 0} }
|
|
|
|
{ # pure colors }
|
|
{ {1 0 0} {53.2408 80.0925 67.2032} }
|
|
{ {0 1 0} {87.7347 -86.1827 83.1793} }
|
|
{ {0 0 1} {32.2970 79.1875 -107.8602} }
|
|
{ {0 1 1} {91.1132 -48.0875 -14.1312} }
|
|
{ {1 1 0} {97.1393 -21.5537 94.4780} }
|
|
{ {1 0 1} {60.3242 98.2343 -60.8249} }
|
|
|
|
{ # shades of pure red }
|
|
{ {0.1 0 0} {16.1387 37.1756 25.0600} }
|
|
{ {0.3 0 0} {30.3521 53.6166 44.0349} }
|
|
{ {0.5 0 0} {38.9565 63.5695 53.3392} }
|
|
{ {0.7 0 0} {45.4792 71.1144 59.6700} }
|
|
{ {0.9 0 0} {50.8512 77.3285 64.8840} }
|
|
|
|
{ # random colors }
|
|
{ {0.3 0.5 0.9} {75.2228 0.7560 -31.8425} }
|
|
}
|
|
|
|
foreach sample $rgb_to_lab_samples {
|
|
set rgb [lindex $sample 0]
|
|
if { $rgb == "#" } continue
|
|
|
|
set ref [lindex $sample 1]
|
|
set lab [vcolorconvert to lab {*}$rgb]
|
|
check3reals "RGB ($rgb) to Lab" {*}$lab {*}$ref 1e-4
|
|
}
|