⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imgpsnr.m

📁 The attached file for motion estimation algorithms using matlab
💻 M
字号:
% Computes motion compensated image's PSNR%% Input%   imgP : The original image %   imgComp : The compensated image%   n : the peak value possible of any pixel in the images%% Ouput%   psnr : The motion compensated image's PSNR%% Written by Aroh Barjatyafunction psnr = imgPSNR(imgP, imgComp, n)[row col] = size(imgP);err = 0;for i = 1:row    for j = 1:col        err = err + (imgP(i,j) - imgComp(i,j))^2;    endendmse = err / (row*col);psnr = 10*log10(n*n/mse);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -