StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/color-space
Angelos Chatzimparmpas e069030893 fix the frontend 4 years ago
..
LICENSE fix the frontend 4 years ago
README.md fix the frontend 4 years ago
ciecam.js fix the frontend 4 years ago
cmy.js fix the frontend 4 years ago
cmyk.js fix the frontend 4 years ago
coloroid.js fix the frontend 4 years ago
cubehelix.js fix the frontend 4 years ago
hcg.js fix the frontend 4 years ago
hcy.js fix the frontend 4 years ago
hpluv.js fix the frontend 4 years ago
hsi.js fix the frontend 4 years ago
hsl.js fix the frontend 4 years ago
hsluv.js fix the frontend 4 years ago
hsp.js fix the frontend 4 years ago
hsv.js fix the frontend 4 years ago
hwb.js fix the frontend 4 years ago
index.js fix the frontend 4 years ago
jpeg.js fix the frontend 4 years ago
lab.js fix the frontend 4 years ago
labh.js fix the frontend 4 years ago
lchab.js fix the frontend 4 years ago
lchuv.js fix the frontend 4 years ago
lms.js fix the frontend 4 years ago
luv.js fix the frontend 4 years ago
munsell.js fix the frontend 4 years ago
osaucs.js fix the frontend 4 years ago
package.json fix the frontend 4 years ago
rgb.js fix the frontend 4 years ago
tsl.js fix the frontend 4 years ago
ucs.js fix the frontend 4 years ago
uvw.js fix the frontend 4 years ago
xvycc.js fix the frontend 4 years ago
xyy.js fix the frontend 4 years ago
xyz.js fix the frontend 4 years ago
ycbcr.js fix the frontend 4 years ago
yccbccrc.js fix the frontend 4 years ago
ycgco.js fix the frontend 4 years ago
ydbdr.js fix the frontend 4 years ago
yes.js fix the frontend 4 years ago
yiq.js fix the frontend 4 years ago
ypbpr.js fix the frontend 4 years ago
yuv.js fix the frontend 4 years ago

README.md

Color-space Build Status stable OpenCollective OpenCollective

Conversions and data for color spaces. Demo.

Usage

npm install color-space

var space = require('color-space');

//convert lab to lch
var result = space.lab.lch([80,50,60]);

You can require a separate space to reduce size significantly:

var rgb = require('color-space/rgb');
var hsl = require('color-space/hsl');

//convert rgb to hsl
rgb.hsl([200,230,100]);

API

<fromSpace>.<toSpace>(array);
<space>.name //space name
<space>.min //channel minimums
<space>.max //channel maximums
<space>.channel //channel names
<space>.alias //alias space names

Spaces

Contribute

Please fork, add color space with basic conversions to/from XYZ or RGB and tests. The goal of project is to provide the most complete set of color spaces with maximally minimal uniform API.

Credits

Thanks to all the color scientists, who devoted their lives to color research and delivered their knowledge to us, for now we can trust them and use their formulas and their code.

Backers

Support us with a monthly donation and help us continue our activities. [Become a backer]

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]

  • colormap — collection of colormaps to map colors of images/data. A replacement for visualising spaces like cubehelix.
  • color-spectrum — convert spectrum to a color.
  • color-interpolate — interpolate between color values.
  • color-tool — color picker based on color-space.

Similar projects