-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PSNR - Peak Signal-to-Noise Ratio #91
Comments
This is great! Thanks for suggesting it. I'll link it into #69 as metrics to include in the book. @minhduy13ly Would you like to take the lead on this? I can support you at any step of the PR. |
Sure @santiviquez - I could get help on this and also could help support/review on other metrics in classical ML/computer vision based on my knowledge. Since I have not contribute to any open-source project before and my experience is limited, I would love to receive the feedbacks for further improving. Do you have any suggestion on the next step? |
Hi @minhduy13ly, the usual workflow looks like this:
And that is pretty much it. This video summarizes it nicely: https://www.youtube.com/watch?v=8lGpZkjnkt4 You might need to install latex on your own machine. In case you don't have it, check out this instructions. Let me know if you have any issues. |
PSNR Peak-Signal-to-Noise Ratio #91 First Page
Metric's name
PSNR - Peak Signal-to-Noise Ratio
Metric's category
Computer Vision
Metrics formula
where
Describe the metrics use cases, and any relevant references.
In the field of image generation and reconstruction, we frequently need to measure how closely our generated images resemble the reference images. Besides modern metrics like FID and Inception Score, PSNR and SSIM are two widely-used classical metrics often used for benchmarking.
The intuition behind PSNR is that it expresses how large the possible signal value (MAX) is in comparison to the error (MSE). If the error is subtle compared to the maximum signal (i.e., a high PSNR), the reconstructed image is relatively similar to the target in terms of pixel values.
Additional context
A sample of using PSNR combined with FID for benchmarking could be found in many computer vision papers, such as EdgeConnect: Generative Image Inpainting with Adversarial Edge Learning
The text was updated successfully, but these errors were encountered: