Gnuplot强度图与灰度

时间:2015-10-02 19:38:47

标签: gnuplot

我正在使用以下命令使用gnuplot制作强度图。

set palette defined
plot 'specttest.csv' u 1:2:3  with points linetype palette

是否可以使用灰度调色板制作相同的绘图,范围从白色到黑色或黑色到白色,具有不同的灰度级?

1 个答案:

答案 0 :(得分:0)

Gnuplot提供了许多指定调色板的方法。对于灰色调色板,最简单的命令是

set palette gray

要使调色板从白色变为黑色,请使用

set palette gray negative

我建议使用这些命令,此后您还可以使用gamma向调色板添加伽玛校正。使用test palette,您可以看到实际调色板的外观:

set palette gray positive gamma 1.5
test palette 

enter image description here

其他可能性是

set palette defined (0 'black', 1 'white')

3是函数x(请参阅show palette rgbformulae):

set palette rgbformulae 3,3,3

set palette function gray, gray, gray