EValuate the generated images of GANS using FID and SSIM (MATLAB:2023a)

조회 수: 10 (최근 30일)
I have generated an images using CGANS ( conditional Gans) as in the matlab official example:
Howerver, I need to write a code to evaluate the smilarity between the orignial images and generated images using FID (Frechet Inception Distance (FID) or Image Quality Measures (SSIM)
  댓글 수: 1
Fatima Bibi
Fatima Bibi 2024년 2월 13일
편집: Fatima Bibi 2024년 2월 13일
i also want this question answer i want to load cgan pretrained model that matches model images with original images
my original images have one folder that contain 5 classes.i want it matches randomly 10 images per class for FID

댓글을 달려면 로그인하십시오.

채택된 답변

Ayush Aniket
Ayush Aniket 2023년 8월 21일
For calculating SSIM for the generated images you can use the MATLAB inbuilt ‘ssim’ function as follows:
% Load and preprocess the original and generated images
original_images = imread('path/to/original/image.jpg');
generated_images = imread('path/to/generated/image.jpg');
% Calculate Structural Similarity Index Measure (SSIM)
ssim_score = ssim(original_images, generated_images);
You can read more about the function in the documentation page: https://in.mathworks.com/help/images/ref/ssim.html
For calculating FID, you can use pre-trained Inception-v3 model from the Deep Learning Toolbox as follows:
net = inceptionv3;
% Calculate Frechet Inception Distance (FID)
original_features = activations(net, original_image, 'avg_pool');
generated_features = activations(net, generated_image, 'avg_pool');
fid_score = wassersteinDistance(original_features, generated_features);
You may need the check for the size compatibility of your images and that required as input to the Inception-v3 model.
Hope this helps!
  댓글 수: 3
Shreeya
Shreeya 2023년 8월 29일
편집: Shreeya 2023년 8월 29일
Find the implementation of the wassersteinDistance below
John
John 2024년 2월 21일
Is the 'original image' before the 'net'? For example, is it the 'noised image' before denoising? If that is the case, then "ssim(original_images, generated_images);" will not be much meaningful. I am not sure how about the Frechet Inception Distance (FID).
What kind of appropriate quantitative evaluation for, for example, unsupervised Cycle GAN generated denoised images? There are two group of images here: noisy-image and denoised-image; the training net is available.
Thank you.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by