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

Function LabToXYZ

Common/Core/vtkMath.h:1403–1406  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1401 * Convert color from the CIE-L*ab system to CIE XYZ.
1402 */
1403 static void LabToXYZ(const double lab[3], double xyz[3])
1404 {
1405 LabToXYZ(lab[0], lab[1], lab[2], xyz + 0, xyz + 1, xyz + 2);
1406 }
1407 static void LabToXYZ(double L, double a, double b, double* x, double* y, double* z);
1408 ///@}
1409

Callers 2

LabToRGBMethod · 0.85
TestColorConvertFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestColorConvertFunction · 0.68