how can i place 25 image by using in one mask in successive manner?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Som
am 11 Aug. 2017
Kommentiert: Image Analyst
am 14 Aug. 2017
how can i place 25 images in one mask.it will be in row wise in that mask?
2 Kommentare
Akzeptierte Antwort
José-Luis
am 11 Aug. 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 Kommentare
Image Analyst
am 14 Aug. 2017
I see you've accepted this answer so I assume you no longer have any errors.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB 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!