3

我的目标是:

  1. 创建一个看不见的图
  2. 使用子图,在其上绘制图像,然后
  3. 无需打开即可保存。

因此,我正在运行以下代码:

f = figure('Visible', 'off');
subplot(2, 2, 1), imshow(image1);
subplot(2, 2, 2), imshow(image2);
subplot(2, 2, 3), imshow(image3);
subplot(2, 2, 4), imshow(image4);
saveas(f, 'filename');

但我得到了错误:

Error using imshow (line xxx)
IMSHOW unable to display image.

这意味着 imshow 正在尝试显示图像。有没有办法imshow在隐形图中显示图像而不尝试弹出?

4

3 回答 3

1

这会奏效,

f = figure('Visible', 'off');
subplot(2, 2, 1), image(image1);
subplot(2, 2, 2), image(image2);
subplot(2, 2, 3), image(image3);
subplot(2, 2, 4), image(image4);
saveas(f, 'filename');

In case of gray scale images

f = figure('Visible', 'off');
subplot(2, 2, 1), image(image1),colormap(gray);
subplot(2, 2, 2), image(image2),colormap(gray);
subplot(2, 2, 3), image(image3),colormap(gray);
subplot(2, 2, 4), image(image4),colormap(gray);
saveas(f, 'filename');

imagesc() 也可以用来代替 image() 函数

于 2014-03-27T08:01:09.453 回答
0

当我在 nodisplay 模式下运行 Matlab 时,我得到了同样的错误。我的解决方法是使用图像作为纹理映射绘制表面网格:

function varargout = imshow_nodisp(im)
% An IMSHOW implementation that works even when Matlab runs -nodisplay.
%
% Only we don't scale the figure window to reflect the image size. Consequently
% the ugly pixel interpolation is directly apparent. IMSHOW has it too, but it
% tries to hide it by scaling the figure window at once.
%
% Input arguments:
%  IM  HxWxD image.
%
% Output arguments:
%  HND  Handle to the drawn image (optional).
%
  [h,w,~] = size(im);

  x = [0 w; 0 w] + 0.5;
  y = [0 0; h h] + 0.5;
  z = [0 0; 0 0];

  hnd = surf(x, y, z, flipud(im), 'FaceColor','texturemap', 'EdgeColor','none');

  view(2);
  axis equal tight off;

  if nargout > 0
    varargout = hnd;
  end
end
于 2015-02-25T11:00:57.487 回答
0

对于任何在这里登陆的人。在为此苦苦挣扎之后,我设法从 mathworks 获得了对此的支持。解决方案很简单。您还需要将轴可见性设置为关闭。

例如

f = figure('Visible', 'off');
a = axes('Visible','off');  ### <-- added this line of code
subplot(2, 2, 1), imshow(image1);
subplot(2, 2, 2), imshow(image2);
subplot(2, 2, 3), imshow(image3);
subplot(2, 2, 4), imshow(image4);
saveas(f, 'filename');
于 2015-10-31T13:52:58.840 回答