Perception based Image Quality Evaluator (PIQE) not working?

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)

 Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 7 de Oct. de 2018
Editada: KALYAN ACHARJYA el 7 de Oct. de 2018
This inbuilt function piqe Introduced in R2018b
Which Matlab version you are using?

5 comentarios

I am using Matlab R2016b Version
KALYAN ACHARJYA
KALYAN ACHARJYA el 9 de Oct. de 2018
Editada: KALYAN ACHARJYA el 9 de Oct. de 2018
That's why this inbuilt function does not work in your Matlab version.
Hope My answer cleared your doubt.
Yes.I have installed 2018 and PIQE is working in it.
Great @Haseeb
Good Wishes!
Are you working on some research areas of Image processing as well?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.

Preguntada:

el 7 de Oct. de 2018

Comentada:

el 9 de Oct. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by