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

Function LabToRGB

Common/Core/vtkMath.h:1488–1491  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1486 * Convert color from the CIE-L*ab system to RGB.
1487 */
1488 static void LabToRGB(const double lab[3], double rgb[3])
1489 {
1490 LabToRGB(lab[0], lab[1], lab[2], rgb + 0, rgb + 1, rgb + 2);
1491 }
1492 static void LabToRGB(double L, double a, double b, double* red, double* green, double* blue);
1493 ///@}
1494

Callers 3

TestColorConvertFunction · 0.85
GetTableMethod · 0.85

Calls

no outgoing calls

Tested by 1

TestColorConvertFunction · 0.68