What is the best matrces to compare improvment in compare to Target image?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi all,
I have a question regarding the best metrics for comparing improvements to a target image. I've already looked into PSNR, SSIM, MS-SSIM, MSE, and similar metrics, but they don't seem to show significant improvement, even though the improvement is visually evident see in the image.
image.
Could you suggest other metrics or methods that might better capture the visual differences and improvements? I’ve attached an example image for reference.
Additionally, if possible, could you provide sample code to implement the suggested metrics?
Thank you
댓글 수: 0
답변 (1개)
Drishti
2024년 9월 17일
Hi Dynamic,
To measure the visual differences and improvement in image quality compared to target image, you can refer to Difference Structural Similarity (DSSIM) and Blind/Referenceless Image Spatial Quality Evaluator (BRISQUE) methods.
DSSIM is used to calculate the dissimilarity between the images and depicts sensitivity to visual changes.
BRISQUE is a no-reference image quality assessment method which compares image to a default model computed from images of natural scenes with similar distortions.
These methods can be directly put into use by following the below given code snippet:
%DSSIM
[ssim_value, ~] = ssim(img1, img2);
% Calculate DSSIM
dssim_value = (1 - ssim_value) / 2;
%brisque method syntax
brisque_score = brisque(img);
For more information, you can refer to the MATLAB documentation of ‘ssim’ and ‘brisque’ functions:
I hope this helps
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!