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

Function XYZToProLab

Common/Core/vtkMath.h:1392–1395  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1390 * DOI : 10.1109/ACCESS.2021.3115425
1391 */
1392 static void XYZToProLab(const double xyz[3], double prolab[3])
1393 {
1394 XYZToProLab(xyz[0], xyz[1], xyz[2], prolab + 0, prolab + 1, prolab + 2);
1395 }
1396 static void XYZToProLab(double x, double y, double z, double* L, double* a, double* b);
1397 ///@}
1398

Callers 2

RGBToProLabMethod · 0.85
TestColorConvertFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestColorConvertFunction · 0.68