plot - 在保留调色板的同时使用 Gnuplot 矩阵中特定值的透明度?

标签 plot undefined gnuplot transparency alpha-transparency

这是一个有趣的问题:

我有一个 double 二进制数据的二维“矩阵”,我想使用 Gnuplot 绘制它。这很容易完成,如下所示:

plot "foo.dat" binary array=384x384 format='%double' with image

诀窍在于数据的某些“区域”具有特殊值,例如 1234567890.0。我希望这些元素完全透明,而所有其他矩阵整体完全不透明。有没有办法根据数据本身设置透明 channel ?

我查看了 Gnuplot 文档 ( link ) 的相关部分,我认为我需要使用 with rgbalpha 样式,但我不确定它是如何应用的或如何映射透明度正确。

我也查看了这些示例 ( link ),但我不确定如何应用它。

我想知道这是否可以在一行中完成(如上所述),或者是否需要几行(如在二进制矩阵顶部绘制等高线时)。

提前致谢!

更新

我想我会为后代举一些例子。在所有示例中,我都使用以下序言:

set title "Basic Plot"   # Or as appropriate
set size square
set palette @MATLAB   # see <http://www.gnuplotting.org/matlab-colorbar-with-gnuplot/>
set cbrange [-100000:100000]    # This cbrange fits my data well enough
                                # I would LOVE an automated way to do this!
val = 1234567890.0      # For missing data

我的基本命令产生以下内容:

plot "foo.dat" binary array=384x384 format='%double' with image

Basic Plot

我还尝试了@Christoph 的建议:将等于 val 的值替换为 NaN:

plot "foo.dat" binary array=384x384 format='%double' \
    using ($1 == val ? NaN : $1) with image

Plot setting val to NaN

我尝试使用 rgbalpha 来真正控制透明度,结果如下:

plot "foo.dat" binary array=384x384 format='%double' \
    using 1:1:1:($1 == val ? 0 : 255) with rgbalpha

Plot using rgbalpha

结论

前两种方法产生相似的结果。第一个是不好的,因为它用错误的最大值弄乱了色彩图。第一个和第二个不足之处在于它们实际上并没有实现透明度(Gnuplot 中的“未定义”值不会自动赋予透明度)。最后一个很棒,因为它实际上控制了透明度,但它是灰度的,并且没有像我希望的那样使用 @MATLAB 调色板。

如果有人可以使等于 val 的所有条目都是透明的并且让颜色图正常工作,我会接受他们的回答。

***下一步要去哪里****

Gnuplot 文档提到了 set datafile missing 命令 ( link )。这看起来很有希望,但它似乎只适用于基于列的数据——而不适用于二进制文件。

我认为回答我最初问题的最好方法是设置一组函数来为 rgbalpha 方法的每个“列”模仿给定的调色板——像这样:

red(z)   = <stuff>
green(z) = <stuff>
blue(z)  = <stuff> 
plot "foo.dat" binary array=384x384 format='%double' \
    using red($1):green($1):blue($1):($1 == val ? 0 : 255) with rgbalpha

如果这些函数以某种方式引用当前调色板,则奖励加分,因此调色板的细节不会硬编码到这三个函数中。 :-)

最佳答案

您可以通过为相应像素指定“NaN”值来实现:

value = 123456789.0
plot "foo.dat" binary array=384x384 format='%double' \
     using ($1 == val ? NaN : $1) with image

请注意,这取决于所选的终端。它至少适用于 wxtpdfcairopngcairopng 使用 x11postscript。我没有测试其他终端。

这是一个独立的例子。背景颜色设置为显示像素确实是透明的而不是白色:

set xrange [0:1]
set yrange [0:1]
set isosamples 11
set samples 11
plot '++' using 1:2:($1 == 0.5 && $2 == 0.5 ? NaN : $1) with image

4.6.5 的结果是:

enter image description here

使用您的示例数据文件,以下脚本工作正常并给出了不错的结果:

set terminal pngcairo size 800,800
set output 'foo.png'
set size square

f(x)=1.5-4*abs(x)
set palette model RGB
set palette functions f(gray-0.75),f(gray-0.5),f(gray-0.25)

val = 1234567890.0

set autoscale xfix
set autoscale yfix
set cbrange [-10000:10000]
plot 'foo.dat' binary array=(512,512) format='%double' using ($1 == val ? NaN : $1) with image notitle

enter image description here

关于plot - 在保留调色板的同时使用 Gnuplot 矩阵中特定值的透明度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25321213/

相关文章:

r - 如何快速绘制小标题的一列与所有其他列的图表?

function - 该函数未定义。 (递归)

PHP CLASS undefined variable (但已定义)

plot - gnuplot - "How to draw an asymptote"/"Get axis value range",获取 x 或 y Axis 最小值和最大值

plot - Gnuplot:相对于x1轴绘制x2轴

python - 在 python 中绘制二进制数据

python - pandas 中的散点图与 Matplotlib 中的散点图不同

c++ - Geany - undefined reference

linux - 如何在 shell 命令行(-e 开关)中将 gnuplot 与 awk 一起使用

r - 如何避免 ggplot2 条形图中条形之间的间距不均匀?