フィルターのクリア

How can I place 4 jpeg images randomly into one 2x2 single larger image?

2 ビュー (過去 30 日間)
ciro saravia
ciro saravia 2018 年 7 月 22 日
コメント済み: ciro saravia 2018 年 7 月 22 日
I can create an image of all 4 of the jpeg images so it makes a 2x2 picture, but i am not sure how to randomize it.
  2 件のコメント
Rik
Rik 2018 年 7 月 22 日
What code did you use? It is easier to adapt your existing code than to write new code you'll have to adapt.
ciro saravia
ciro saravia 2018 年 7 月 22 日
編集済み: Walter Roberson 2018 年 7 月 22 日
A = imread('wizard.jpg');
B = imread('orc.jpg');
C = imread('hobbit.jpg');
D = imread('elf.jpg');
[row,col,layer] = size(A);
B_resized = imresize(B,[row,col]);
C_resized = imresize(C,[row,col]);
D_resized = imresize(D,[row,col]);
pic = [A,B_resized;C_resized,D_resized];
I just loaded the pictures and resized them so they would have the same dimensions

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

採用された回答

Walter Roberson
Walter Roberson 2018 年 7 月 22 日
parts = {A, B_resized, C_resized, D_resized};
pic = cell2mat( reshape( parts(randperm(4)), 2, 2 ) );

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Segmentation and Analysis についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by