Divide the new images
Show older comments
How can i divide the generated images so i can have them seperated instead of having them all in one image?

4 Comments
Stavros
on 28 Jun 2022
Chunru
on 29 Jun 2022
It depends on what is your data and how you plot them. Post your data/code.
Stavros
on 29 Jun 2022
Chunru
on 29 Jun 2022
The example code generates images
XGeneratedNew = predict(netG,ZNew);
All generated images are stored in the variable XGeneratedNew. To display the image in tled format, the example code performs the following
% Display the images.
I = imtile(extractdata(XGeneratedNew));
I = rescale(I);
Instead of tiled format, you can plot individual images by looking the data from "predict"
x = extractdata(XGeneratedNew)
Accepted Answer
More Answers (0)
Categories
Find more on Images in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


