本文介绍了自由/开放图书馆找到类似的图片的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在寻找稳定和成熟的自由/开源库可以比较两个图像。
I'm looking for stable and mature free/opensource library allows to compare two images.
我发现这一个,但我想知道,如果你用一个更好的!
I found this one but I want to know if you use a better one!
推荐答案
我做到了simply.Just下载EyeOpen库的。然后用它在你的C#类,并写:
I did it simply.Just download EyeOpen Library here.then use it in your c# class and write this:
use eyeopen.imaging.processing
写
ComparableImage cc;
ComparableImage pc;
int sim;
void compare(object sender, EventArgs e){
pc = new ComparableImage(new FileInfo(files));
cc = new ComparableImage(new FileInfo(file));
pc.CalculateSimilarity(cc);
sim = pc.CalculateSimilarity(cc);
int sim2 = sim*100
Messagebox.show(sim2 + "% similar");
}
这篇关于自由/开放图书馆找到类似的图片的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!