1 Star 0 Fork 0

yasuo_hao/PIRM2018

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
evaluate_results.m 796 Bytes
一键复制 编辑 原始数据 按行查看 历史
YOCB 提交于 2018-05-22 22:35 . Update evaluate_results.m
%% Parameters
% Directory with your results
%%% Make sure the file names are as exactly %%%
%%% as the original ground truth images %%%
input_dir = fullfile(pwd,'your_results');
% Directory with ground truth images
GT_dir = fullfile(pwd,'self_validation_HR');
% Number of pixels to shave off image borders when calcualting scores
shave_width = 4;
% Set verbose option
verbose = true;
%% Calculate scores and save
addpath utils
scores = calc_scores(input_dir,GT_dir,shave_width,verbose);
% Saving
save('your_scores.mat','scores');
%% Printing results
perceptual_score = (mean([scores.NIQE]) + (10 - mean([scores.Ma]))) / 2;
fprintf(['\n\nYour perceptual score is: ',num2str(perceptual_score)]);
fprintf(['\nYour RMSE is: ',num2str(sqrt(mean([scores.MSE]))),'\n']);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yasuo_hao/PIRM2018.git
git@gitee.com:yasuo_hao/PIRM2018.git
yasuo_hao
PIRM2018
PIRM2018
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385