Colormap that looks good when printed grayscale

版本 1.0.0.0 (12.3 KB) 作者: Fab
Defining colors to exploit both the color and intensity contrasts good for grayscale
686.0 次下载
更新时间 2015/10/13

查看许可证

The endless quest of defining a colormap that looks good when printed in grayscale has ended.
This library allows the definition of rgb colors so that they can be picked for maximum contrast between their Hue and the equivalent grayscale intensity. The library uses the HSV convention, and calculates the S and V values for other palettes required to reflect the grayscale intensity of the red color. In this way, you can input colors by specifying color type (Hue) and grayscale intensity (Int), and you can be assured that when multiple colors are printed in grayscale, the resulting intensity is matched. The library includes the matrix of S and V conversions "HSVBWColormap.mat" and the function HInt2RGB that creates RGB values.
Example on how to use the file, to define a 6 colors colormap. Note that, with the addition of white and black, this allows use of 8 colors when needed.

rgb(1,:)=HInt2RGB(1,100); % red, darkest
rgb(2,:)=HInt2RGB(7,82); % cyan, less dark
rgb(3,:)=HInt2RGB(3,64); % green, less dark
rgb(4,:)=HInt2RGB(9,46); % magenta, less dark
rgb(5,:)=HInt2RGB(2,28); % orange, less dark
rgb(6,:)=HInt2RGB(7,10); % blue cyan, lightest

X=[0 1 1 0];
Y=[0 0 1 1];

patch(X,Y,rgb(1,:));
patch(1+X,Y,rgb(2,:));
patch(2+X,Y,rgb(3,:));
patch(3+X,Y,rgb(4,:));
patch(4+X,Y,rgb(5,:));
patch(5+X,Y,rgb(6,:));

Note that the resulting darkness is decreasing, and the colors change maximizing contrast (change in Hue between adjacent patches is 120-180 deg).

ENJOY!!

引用格式

Fab (2024). Colormap that looks good when printed grayscale (https://www.mathworks.com/matlabcentral/fileexchange/53499-colormap-that-looks-good-when-printed-grayscale), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2011a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Greyscale 的更多信息
致谢

启发作品: squink(Colors,Gamma), jetwhite(Colours)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.0.0.0