Filter löschen
Filter löschen

montage of 3 image

6 Ansichten (letzte 30 Tage)
PK
PK am 6 Okt. 2016
Bearbeitet: PK am 6 Okt. 2016
I want to create a montage of same 5 image.Please help!

Akzeptierte Antwort

Matthew Eicholtz
Matthew Eicholtz am 6 Okt. 2016
See montage.
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 Kommentare
PK
PK am 6 Okt. 2016
Bearbeitet: PK am 6 Okt. 2016
This answer is good. It is useful but I want to take with only one photo image file. Pleas help again...
Matthew Eicholtz
Matthew Eicholtz am 6 Okt. 2016
I = imread('peppers.png');
N = 5;
J = [];
for ii=1:N
J = cat(4,J,I);
end
figure;
montage(J,'size',[1 N]);

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Display Image finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by