| 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 |
no outgoing calls