how can i place 25 image by using in one mask in successive manner?

1 回表示 (過去 30 日間)
Som
Som 2017 年 8 月 11 日
コメント済み: Image Analyst 2017 年 8 月 14 日
how can i place 25 images in one mask.it will be in row wise in that mask?
  2 件のコメント
José-Luis
José-Luis 2017 年 8 月 11 日
Please try to be clearer.
Som
Som 2017 年 8 月 11 日
i have 25 image and i want to place all images in one mask row wise in successive manner

サインインしてコメントする。

採用された回答

José-Luis
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 件のコメント
Som
Som 2017 年 8 月 14 日
i was trying to show the output image but error is coming. imshow(result) i added after the loop to show the image.
Image Analyst
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!

Translated by