Skip to content

[MATLAB] The only colormap generator you will ever need! Beautiful, distinctive colormaps that desaturate to grayscale but keep the sequence information.

License

Notifications You must be signed in to change notification settings

DrosteEffect/CubeHelix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CUBEHELIX Function

CUBEHELIX generates colormaps for published or distributed documents as they are very attractive in full color and yet are suitable for grayscale conversion.

CUBEHELIX creates different colormaps using just a few parameters. The standard algorithm generates attractive colormaps for online and electronic documents (e.g. PDF), and yet when printed in grayscale they keep exactly the sequence information of the original data. CUBEHELIX function also includes two extra controls over the range and domain of the colormap values, giving a practically unlimited number of colormaps with many different styles: maximally distinct, multi or single hue, and may be suitable for grayscale printing or even simple grayscale.

Algorithm

CUBEHELIX colormaps consist of nodes along a tapered helix in the RGB color cube, with a continuous increase in perceived intensity (e.g. black->white). Thus the algorithm defines attractive colormaps with a huge choice of hue, saturation and brightness, and yet printing a figure (or image) in Black-and-White (e.g. postscript) results in a monotonically increasing grayscale that retains the brightness order of the original colormap. The sequence information of the colormap is retained even in grayscale, which means an attractive colored image can be printed in grayscale and still be informative to the end-user.

The CUBEHELIX algorithm is defined here: http://astron-soc.in/bulletin/11June/289392011.pdf

For more information and examples: http://www.mrao.cam.ac.uk/~dag/CUBEHELIX/

Note: the original specification (the links above) misnamed the saturation option as "hue". In the CUBEHELIX function the saturation option is named "satn".

Examples

% New colors for the COLORMAP example:
S = load('spine');
image(S.X)
colormap(cubehelix) % default parameters

% New colors for the SURF example:
[X,Y,Z] = peaks(30);
surfc(X,Y,Z)
colormap(cubehelix([],0.5,-1.5,1,1,[0.29,0.92]))
axis([-3,3,-3,3,-10,5])

Bonus Function

CUBEHELIX_VIEW creates an interactive figure that allows control of the colormap parameters, and contains two colorbars showing colors of the colormap and the grayscale equivalent.

R2014b or later: CUBEHELIX_VIEW can also update other axes' or figures' colormaps in real time, for example:

S = load('spine');
image(S.X)
cubehelix_view(gca)

PRESET_COLORMAP is a wrapper for any colormap function, storing the function and any parameter values for future calls.

preset_colormap(@cubehelix, 0.5,-1.5,1,1)
colormap(preset_colormap)

Notes

  • The original specification (the links above) misnamed the saturation option as "hue". In the CUBEHELIX function the saturation option is named "satn".

About

[MATLAB] The only colormap generator you will ever need! Beautiful, distinctive colormaps that desaturate to grayscale but keep the sequence information.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages