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개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!