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

Function RGBToLab

Common/Core/vtkMath.h:1451–1454  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1449 */
1450
1451 static void RGBToLab(const double rgb[3], double lab[3])
1452 {
1453 RGBToLab(rgb[0], rgb[1], rgb[2], lab + 0, lab + 1, lab + 2);
1454 }
1455 static void RGBToLab(double red, double green, double blue, double* L, double* a, double* b);
1456 ///@}
1457

Callers 5

TestColorConvertFunction · 0.85
getLabColorFunction · 0.85
CorrectedDistanceFunction · 0.85
GetTableMethod · 0.85

Calls

no outgoing calls

Tested by 1

TestColorConvertFunction · 0.68