フィルターのクリア

imshow : add spacing between two images

8 ビュー (過去 30 日間)
Moritz P.
Moritz P. 2015 年 8 月 27 日
コメント済み: Image Analyst 2021 年 2 月 25 日
Hi, is there a way to add spacing between two images so that they are farther apart?
figure;
imshow([A B],[]);
colormap(winter);
  2 件のコメント
K P RAVIKUMAR
K P RAVIKUMAR 2021 年 2 月 25 日
How to provide spacing between the images in monage for multiple images
Image Analyst
Image Analyst 2021 年 2 月 25 日
Basically the same way as in my Answer below. You just need to do it in both directions. There is no montage option for this I don't believe, so if you want it, you'll have to do it manually.

サインインしてコメントする。

回答 (1 件)

Image Analyst
Image Analyst 2015 年 8 月 27 日
Try making a band of zeros
spacer = zeros(rows, columns, 'uint8');
wideMatrix = [A, spacer, B];

カテゴリ

Help Center および File ExchangeDisplay Image についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by