本文介绍了关于用于两个图像比较的均方误差和PSNR的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的

我遇到了有关C Sharp 2图像比较的问题.

我写了以下代码

Dear

I got a problem about C Sharp 2 images comparison.

I wrote the code of following

r = (point1[x*3+2]-point2[x*3+2])*(point1[x*3+2]-point2[x*3+2]);
g = (point1[x*3+1]-point2[x*3+1])*(point1[x*3+1]-point2[x*3+1]);
b = (point1[x*3]-point2[x*3])*(point1[x*3]-point2[x*3]);
sum = sum+r+g+b;
mse = sum/Hight*Width;



这些代码是否可以满足均方误差"以检查两个不同的图像?

最好的问候,.

Jacky



Could these code be satisfied for " Mean Square Error" to check two different images?

Best Regards,.

Jacky

推荐答案


这篇关于关于用于两个图像比较的均方误差和PSNR的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 23:42