Clear Filters
Clear Filters

how to save the generated images by GAN?

6 views (last 30 days)
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 Comments
Ranpreet Kaur
Ranpreet Kaur on 25 Aug 2021
Hi,
Did you solve the question? how to save images generated by GAN.
Nagwa megahed
Nagwa megahed on 12 Sep 2021
No, i still have the problem
please if you find a way or solution ,write it in a comment immediately

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 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 Comments
Nagwa megahed
Nagwa megahed on 28 Oct 2021
Edited: Nagwa megahed on 28 Oct 2021
Thanks alot, i did it with your help
amel laidi
amel laidi on 5 Nov 2021
can you tell us in details how you used this solution on individual images? thank you

Sign in to comment.

More Answers (0)

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Tags

Products


Release

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!