私の目標は次のとおりです。
- 目に見えない図を作成する
- サブプロットを使用して、その上に画像をプロットしてから、
- 開かずに保存します。
したがって、私は次のコードを実行しています。
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
非表示の図に画像を表示し、ポップアップしないようにする方法はありますか?