代码搜索:PSNR
找到约 336 项符合「PSNR」的源代码
代码结果 336
www.eeworm.com/read/291907/8388403
obj psnr.obj
www.eeworm.com/read/291907/8388409
pch psnr.pch
www.eeworm.com/read/389321/8533505
m psnr.m
function [gamma] = psnr(x,y)
% Takes two 8-bit IMAGES and computes peak-to-peak signal to noise ratio:
% gamma = 10 log (255^2/MSE)
% x and y must be the same dimension and may be 2D arrays or vect
www.eeworm.com/read/182760/9192355
m psnr.m
%Name: Chris Shoemaker
%Course: EER-280 - Digital Watermarking
%Project: Calculates the PSNR (Peak Signal to Noise Ratio)
% of images A and A', both of size MxN
function [A] = psnr(
www.eeworm.com/read/182760/9192403
m psnr.m
%PSNR.m
function S=PSNR(I,J)
% PSNR(I,J) returns the peak signal to noise ratio) between I and J %(dB)
% I is the original image and J is a modified version of I.
% The PSNR value is useful to ca
www.eeworm.com/read/375062/9374266
m psnr.m
function [psnr] = PSNR (A,B)
%
%function [psnr] = psnr (A,B)
%
%
mse = mserror(A,B) % MMSE
if (mse == 0)
psnr=Inf;
else
psnr = 10*log10(255^2/mse);
www.eeworm.com/read/361539/10047489
exe psnr.exe
www.eeworm.com/read/361539/10047525
c psnr.c
#include
#include
#include
#include
#include
int main(int n, char *cl[])
{
FILE *f1, *f2;
int i, x, y, yuv, inc = 1, size = 0, N = 0,
www.eeworm.com/read/361539/10047526
exe psnr.exe
www.eeworm.com/read/361167/10065238