Perception based Image Quality Evaluator (PIQE) not working?

2 次查看(过去 30 天)
I want to check Perception based Image Quality Evaluator (PIQE) for more description see the link PIQE
but not working.How to overcome this issue. The picture is attached with code and error.The code is given as following.
A = imread('Ours_Orignal\1.png');
Anoise = imnoise(A,'Gaussian',0,0.05);
Ablur = imgaussfilt(A,2);
score = piqe(A);
score_noise = piqe(Anoise);
score_blur = piqe(Ablur);
figure
montage({A,Anoise,Ablur},'Size',[1 3])
title({['Original Image: PIQE score = ', num2str(score),' | Noisy Image: PIQE score = ', num2str(score_noise),'
' ...
'| Blurred Image: PIQE score = ', num2str(score_blur)]}, 'FontSize',12)

采纳的回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2018-10-7
编辑:KALYAN ACHARJYA 2018-10-7
This inbuilt function piqe Introduced in R2018b
Which Matlab version you are using?
  5 个评论
Haseeb Hassan
Haseeb Hassan 2018-10-9
Are you working on some research areas of Image processing as well?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by