Perception based Image Quality Evaluator (PIQE) not working?
1 回表示 (過去 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)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/197246/image.png)
0 件のコメント
採用された回答
KALYAN ACHARJYA
2018 年 10 月 7 日
編集済み: KALYAN ACHARJYA
2018 年 10 月 7 日
Which Matlab version you are using?
5 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!