How can I place 4 jpeg images randomly into one 2x2 single larger image?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ciro saravia
el 22 de Jul. de 2018
Comentada: ciro saravia
el 22 de Jul. de 2018
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 comentarios
Rik
el 22 de Jul. de 2018
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
el 22 de Jul. de 2018
Editada: Walter Roberson
el 22 de Jul. de 2018
Respuesta aceptada
Walter Roberson
el 22 de Jul. de 2018
parts = {A, B_resized, C_resized, D_resized};
pic = cell2mat( reshape( parts(randperm(4)), 2, 2 ) );
Más respuestas (0)
Ver también
Categorías
Más información sobre Convert Image Type en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!