how to save the generated images by GAN?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Nagwa megahed
am 14 Aug. 2021
Kommentiert: amel laidi
am 5 Nov. 2021
i need to generate images by GAN ,so i followed ' Train Generative Adversarial Network' example presented here
but i have a difficulty in saving the generated images as a separated images not a dlarray
can any one help?
2 Kommentare
Akzeptierte Antwort
Image Analyst
am 14 Aug. 2021
Look where they display the images:
I = imtile(extractdata(dlXGeneratedNew));
I = rescale(I);
figure
image(I)
axis off
title("Generated Images")
So can't you just use extractdata() to get one image and then use imwrite() on that?
6 Kommentare
amel laidi
am 5 Nov. 2021
can you tell us in details how you used this solution on individual images? thank you
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Data Workflows finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!