how can i place 25 image by using in one mask in successive manner?
1 次查看(过去 30 天)
显示 更早的评论
how can i place 25 images in one mask.it will be in row wise in that mask?
采纳的回答
José-Luis
2017-8-11
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 个评论
Image Analyst
2017-8-14
I see you've accepted this answer so I assume you no longer have any errors.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!