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

Function ProLabToXYZ

Common/Core/vtkMath.h:1380–1383  ·  view source on GitHub ↗

@{ * Convert color from the ProLAB system to CIE XYZ. * DOI : 10.1109/ACCESS.2021.3115425 */

Source from the content-addressed store, hash-verified

1378 * DOI : 10.1109/ACCESS.2021.3115425
1379 */
1380 static void ProLabToXYZ(const double prolab[3], double xyz[3])
1381 {
1382 ProLabToXYZ(prolab[0], prolab[1], prolab[2], xyz + 0, xyz + 1, xyz + 2);
1383 }
1384 static void ProLabToXYZ(double L, double a, double b, double* x, double* y, double* z);
1385 ///@}
1386

Callers 2

ProLabToRGBMethod · 0.85
TestColorConvertFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestColorConvertFunction · 0.68