MCPcopy Create free account
hub / github.com/Kitware/VTK / XYZToLab

Function XYZToLab

Common/Core/vtkMath.h:1414–1417  ·  view source on GitHub ↗

@{ * Convert Color from the CIE XYZ system to CIE-L*ab. */

Source from the content-addressed store, hash-verified

1412 * Convert Color from the CIE XYZ system to CIE-L*ab.
1413 */
1414 static void XYZToLab(const double xyz[3], double lab[3])
1415 {
1416 XYZToLab(xyz[0], xyz[1], xyz[2], lab + 0, lab + 1, lab + 2);
1417 }
1418 static void XYZToLab(double x, double y, double z, double* L, double* a, double* b);
1419 ///@}
1420

Callers 3

RGBToLabMethod · 0.85
TestColorConvertFunction · 0.85
vtkImageXYZToLABExecuteFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestColorConvertFunction · 0.68