标签: c# image colors comparison
可能重复: How can I measure the similarity between two images?
如何检查两张图片是否相似,不一样,但相似?
喜欢颜色计数或字节或某事等于?
在C#中。
我需要制作一个识别电脑上重复照片的工具。
感谢。
答案 0 :(得分:2)
我同意@ MikeOhlsen的评论100%。
除此之外,如果您真的想要挑剔,可以将它们加载到Bitmap,然后使用GetPixel()并跟踪匹配像素的百分比(> = 95%匹配)是“相似的图像”,例如)。
Bitmap
GetPixel()
此外,类似的帖子:Compare images in C# .NET