how to save the generated images by GAN?
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Image Analyst
2021-8-14
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 个评论
amel laidi
2021-11-5
can you tell us in details how you used this solution on individual images? thank you
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!