how to read images from dir and combine images with different size in one image
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
how to combine multi images in one image with different size and position beside each other in 3 3 matrix , just like a image in link :
0 Kommentare
Antworten (1)
Image Analyst
am 25 Nov. 2016
See my demo to paste a rectangular image into a larger canvass.
6 Kommentare
Image Analyst
am 3 Dez. 2016
First do this outside the loop
[rowsA, columnsA, numColorsA] = size(A)
Then, in the loop, instead of this:
B = imresize(B,0.5);
do this to resize B to be the same size as A
B = imresize(B, [rowsA, columnsA]); % No need to pass in numColorsA.
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!