• 大小: 738B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-06-14
  • 语言: Matlab
  • 标签: 实现  MATLAB  

资源简介

用MATLAB实现图像质量评价方法——峰值信噪比。

资源截图

代码片段和文件信息

%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(imageimage_primeMN)

    % convert to doubles
    image=double(image);
    image_prime=double(image_prime);

    % avoid divide by zero nastiness
    if ((sum(

评论

共有 条评论