我会在远程服务器上运行Matlab。 在我的脚本中,我需要在图像上绘制一些矩形。 这是我的代码:
set(0,'DefaultFigureVisible','off');
figure;
imshow(img,[])
hold on
.
.
.
patch([c, c, c+N-1, c+N-1], [r, r+N-1, r+N-1, r], col, 'edgecolor', 'none', 'facecolor', col, 'facealpha', .4)
我收到错误" IMSHOW无法显示图像"。我想它是由图形问题产生的。我该如何解决这个问题?