Specify Output Class For GAN Image Generator
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
james flynn
el 17 de Abr. de 2021
Comentada: Mahesh Taparia
el 15 de Sept. de 2021
In MATLAB's 'Train Generative Adversarial Network' example, the final step is to generate new images using the predict function and the following code.
%% Generate New Images
numObservations = 25;
ZNew = randn(numLatentInputs,numObservations,'single');
dlZNew = dlarray(ZNew,'CB');
if (executionEnvironment == "auto" && canUseGPU) || executionEnvironment == "gpu"
dlZNew = gpuArray(dlZNew);
end
dlXGeneratedNew = predict(dlnetGenerator,dlZNew);
I = imtile(extractdata(dlXGeneratedNew));
I = rescale(I);
figure
image(I)
axis off
title("Generated Images")
The example produces a random sample of 25 images from 5 classes. I want to modify this to request one image from a specific class. For example, generate 5 images for the 'Dandilion' class. Can someone help me understand if it's possible to request specific generator outputs like this? Thanks in advance.
0 comentarios
Respuesta aceptada
Mahesh Taparia
el 21 de Abr. de 2021
Hi
You can possibly try with conditional GAN to generate images of a particular class. For more information, you can refer this documentation of conditional GAN. You can refer here for image generation.
2 comentarios
Nagwa megahed
el 13 de Sept. de 2021
Thanxs for your comment , can i ask you aquestion according to GAN ?
I hope to find the answer with you
how can i save the synthetic images( the generated images by GAN) in the disk space,
in other words, how can i save these images in a folder to use it in training a deep network ?
Mahesh Taparia
el 15 de Sept. de 2021
Hi
It is already answered in the community. You can refer the below links:
Más respuestas (0)
Ver también
Categorías
Más información sobre Denoising and Compression en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!