Skip to content

Latest commit

 

History

History
128 lines (79 loc) · 5.91 KB

DICTIONARY.md

File metadata and controls

128 lines (79 loc) · 5.91 KB

Dictionary

color perception

Paradox / illusions

gamma correction

gamut

gradient/colourmap/palette

hue (dull to bright),

  • single hue = monochromatic for the value of one numeric variable
  • multiple hue (polichromatic ) for the data that aren’t based on the value of a single number ( categories)
  • two hue = divergent

saturation ( chroma)

Lightness ( from black to white)

Relative luminance is formed as a weighted sum of linear RGB components

//from function test_palette_subcommand from the file gnuplot/src/command.c
ntsc = 0.299 * rgb.r + 0.587 * rgb.g + 0.114 * rgb.b;

Photoshop

y = 0.30 * r + 0.59 * g + 0.11 * b;

Perceived brightness ( P from HSP ) by Darel Rex Finley

By playing around with Photoshop’s RGB-to-Greyscale mode conversion, I determined that it is doing something very close to this:

brightness = sqrt( .299 R^2 + .587 G^2 + .114 B^2 )

Cielab lightness

Contrast

colour spaces

data types

  • qualitative/quantitative
  • ordered/non-ordered
  • numerical/categorical(=non-numerical)
    • numerical data subtypes: discrete, continuous, interval, ratio

Qualitative/Quantitative

see also :

ordered/not-ordered data

  • ordered
    • continous ( numerical , real numbers)
    • sequential = discrete ( numerical, integer). See sequential palettes from Color Brewer
  • not ordered = qualitative, discrete not ordered

Data and gradient relation: