Divide the new images
Afficher commentaires plus anciens
How can i divide the generated images so i can have them seperated instead of having them all in one image?

4 commentaires
Stavros
le 28 Juin 2022
Chunru
le 29 Juin 2022
It depends on what is your data and how you plot them. Post your data/code.
Stavros
le 29 Juin 2022
Chunru
le 29 Juin 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)
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Images dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



