使标记的边界在 pgfplots 中更加明显?

使标记的边界在 pgfplots 中更加明显?

imshow()我使用 pgfplots 绘制类似于MATLAB 的黑白数组。

我使用以下代码(来自使用 TikZ/PGF 绘制实值矩阵,类似 matlab 中的 imshow) 去做吧

\begin{tikzpicture}[scale=0.3]
    \begin{axis}[x=4mm,y=4mm,xtick=\empty,ytick=\empty,colormap={bw}{gray(0cm)=(0); gray(1cm)=(1)}]
    \addplot[scatter,scatter src=explicit,
             only marks, mark=square*,mark size=2mm]
             table[x=x,y=y,meta=l] {datafile.txt};
    \end{axis}
\end{tikzpicture}

但如果所有块都是黑色,它们之间的边界线就会消失。我希望边界线更明显。我该怎么做?

我无法摆出姿势,请参见

在此处输入图片描述

举个例子。

相关内容