Perception based Image Quality Evaluator (PIQE) not working?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Haseeb Hassan
am 7 Okt. 2018
Kommentiert: Haseeb Hassan
am 9 Okt. 2018
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)
0 Kommentare
Akzeptierte Antwort
KALYAN ACHARJYA
am 7 Okt. 2018
Bearbeitet: KALYAN ACHARJYA
am 7 Okt. 2018
Which Matlab version you are using?
5 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!