montage of 3 image
조회 수: 9 (최근 30일)
이전 댓글 표시
I want to create a montage of same 5 image.Please help!
댓글 수: 0
채택된 답변
Matthew Eicholtz
2016년 10월 6일
An example:
I = imread('peppers.png');
R = I(:,:,1);
G = I(:,:,2);
B = I(:,:,3);
J = rgb2gray(I);
K = im2bw(I)*255;
img = cat(4,R,G,B,J,K);
figure;
montage(img,'Size',[1 5]);
댓글 수: 2
Matthew Eicholtz
2016년 10월 6일
I = imread('peppers.png');
N = 5;
J = [];
for ii=1:N
J = cat(4,J,I);
end
figure;
montage(J,'size',[1 N]);
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!