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

Function XYZToRGB

Common/Core/vtkMath.h:1425–1428  ·  view source on GitHub ↗

@{ * Convert color from the CIE XYZ system to RGB. */

Source from the content-addressed store, hash-verified

1423 * Convert color from the CIE XYZ system to RGB.
1424 */
1425 static void XYZToRGB(const double xyz[3], double rgb[3])
1426 {
1427 XYZToRGB(xyz[0], xyz[1], xyz[2], rgb + 0, rgb + 1, rgb + 2);
1428 }
1429 static void XYZToRGB(double x, double y, double z, double* r, double* g, double* b);
1430 ///@}
1431

Callers 3

ProLabToRGBMethod · 0.85
LabToRGBMethod · 0.85
TestColorConvertFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestColorConvertFunction · 0.68