3つの画像を隣り合わせに配置したい
20 次查看(过去 30 天)
显示 更早的评论
A = imread('~.bmp')
C = imfuse(A,A,'montage');
image(C)
上のコマンドで二つの画像を隣り合わせで一つのFigureにすることはできたのですが、3つ隣り合わせにする場合はどうすれば良いでしょうか。
0 个评论
回答(1 个)
Hernia Baby
2022-6-7
cat で連結するのはどうですか?
I = imread('chacha_sq.jpeg');
I = cat(2,I,I,I);
imshow(I)
2 个评论
Kojiro Saito
2022-6-7
img1 = imread('peppers.png');
img2 = rgb2gray(img1);
img3 = imgaussfilt(img1);
out = imtile({img1, img2, img3}, 'GridSize', [1 3]);
imshow(out)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 インポート、エクスポートおよび変換 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
