D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
washeet.softurecs.com
/
node_modules
/
image-q
/
src
/
conversion
/
Filename :
rgb2lab.ts
back
Copy
/** * @preserve * Copyright 2015-2018 Igor Bezkrovnyi * All rights reserved. (MIT Licensed) * * rgb2lab.ts - part of Image Quantization Library */ import { rgb2xyz } from './rgb2xyz'; import { xyz2lab } from './xyz2lab'; export function rgb2lab(r: number, g: number, b: number) { const xyz = rgb2xyz(r, g, b); return xyz2lab(xyz.x, xyz.y, xyz.z); }