gpt4 book ai didi

image-processing - 提高 SSIM、PSNR 等过滤器的 ffmpeg 精度

转载 作者:行者123 更新时间:2023-12-04 23:34:34 29 4
gpt4 key购买 nike

我正在尝试使用 ffmpeg 计算图像的 ssim 和 psnr;但是,结果仅保留小数点后 2 位。有没有办法提高结果的精度(越高越好)?
输出:

n:1 mse_avg:0.00 mse_r:0.00 mse_g:0.00 mse_b:0.00 psnr_avg:76.89 psnr_r:76.88 psnr_g:76.93 psnr_b:76.86
用于psnr的命令:
ffmpeg.exe -i original.tiff -i modified.tiff -lavfi psnr=stats_file=psnr_logfile.txt -f null -
用于 ssim 的命令:
ffmpeg.exe -i original.tiff -i modified.tiff -lavfi ssim=stats_file=ssim_logfile.txt -f null -

最佳答案

控制台输出显示更多小数位:

ffmpeg -i modified.tiff -i original.tiff -lavfi "[0][1]psnr" -f null -
...
[Parsed_psnr_0 @ 0x55bad8baeb80] PSNR r:29.920378 g:33.903905 b:29.960557 average:30.906865 min:30.906865 max:30.906865
或使用 libvmaf filter :
ffmpeg -i modified.tiff -i original.tiff -lavfi "[0][1]libvmaf=psnr=1:ssim=1:log_path=stats.json:log_fmt=json" -f null -
示例 stats.json包含:
"VMAF score":84.32680682547482,
"PSNR score":36.81582411904382,
"SSIM score":0.9912355542182922

关于image-processing - 提高 SSIM、PSNR 等过滤器的 ffmpeg 精度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67659616/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com