两个图像匹配吗?使用Emgu CV C#

时间:2016-08-01 18:44:57

标签: c# emgucv

我有两张图片,我需要获得一个与布尔匹配的回报。我发现的一切都是"获得不同的形象"这不是我想要的。

        Image<Gray, Byte> img1 = new Image<Gray, Byte>(imageURL);
        Image<Gray, Byte> img2 = new Image<Gray, Byte>(imageURL2);
        Image<Gray, Byte> img3 = img2 - img1;

我也会采取某种百分比匹配回报。

1 个答案:

答案 0 :(得分:1)

I use precisely the method described here

我唯一添加的是我也计算不同的像素,这样我就可以有%的差异。