how can i place 25 image by using in one mask in successive manner?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
how can i place 25 images in one mask.it will be in row wise in that mask?
2 Commenti
Risposta accettata
José-Luis
il 11 Ago 2017
This is how I interpret your question.
imageSize = [256,256];
numImages = 25;
result = zeros(numImages,imageSize(1),imageSize(2));
for ii = 1:numImages;
currentImage = rand(imageSize);
result(ii,:,:) = currentImage;
end
Vertically stacked images.
3 Commenti
Image Analyst
il 14 Ago 2017
I see you've accepted this answer so I assume you no longer have any errors.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!