Perception based Image Quality Evaluator (PIQE) not working?

조회 수: 2 (최근 30일)
Haseeb Hassan
Haseeb Hassan 2018년 10월 7일
댓글: Haseeb Hassan 2018년 10월 9일
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
KALYAN ACHARJYA
KALYAN ACHARJYA 2018년 10월 9일
Great @Haseeb
Good Wishes!
Haseeb Hassan
Haseeb Hassan 2018년 10월 9일
Are you working on some research areas of Image processing as well?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by