我想比较两个bmp文件。我想到了两种方法:
但是,我不知道如何开始,哪种方法更好。如果有人能帮助我,我会很高兴的!
答案 0 :(得分:1)
我不知道你想在哪个平台上实现这个,但这里有一些可能有用的代码片段:
这是一个比较2张图片的片段 看看它们是否相同。这个 方法首先将每个位图转换为a 字节数组,然后获取每个的哈希值 阵列。然后我们遍历每个 哈希,看看它们是否匹配。
/// <summary>
/// method for comparing 2 images to see if they are the same. First
/// we convert both images to a byte array, we then get their hash (their
/// hash should match if the images are the same), we then loop through
/// each item in the hash comparing with the 2nd Bitmap
/// </summary>
/// <param name="bmp1"></param>
/// <param name="bmp2"></param>
/// <returns></returns>
public bool doImagesMatch(ref Bitmap bmp1, ref Bitmap bmp2)
{
...
}
答案 1 :(得分:0)
嗯,这里至少有两个选项:
图片大致相同
在这种情况下,我建议使用splattne的解决方案进行比较
图片通常不同,有时只相同
在这种情况下,可能是您可以通过快速比较信息标题来忽略两个图像之间的任何相似性(认为“大小相同?”),并且只有在信息不明确时才进行完全比较(即尺寸 相同)
答案 2 :(得分:0)
您可能希望在.NET 3.0+中使用扩展方法来展示所有位图上的比较方法:
public static bool Compare(this Bitmap bmp1, Bitmap bmp2)
{
//put your comparison logic here
}
答案 3 :(得分:0)
你在比较什么?你想看看2张图片是否完全一样吗?或者你需要程度的差异?对于完全匹配,如何创建和比较两个文件的哈希值?
答案 4 :(得分:0)
当我有两个颜色深度不同的图像时,上述解决方案对我不起作用 - 一个是32bpp而另一个是8bpp。我到达的解决方案使用LockBits将所有图像转换为32bpp,Marshal.Copy()将数据转换为数组,然后只比较数组。
/// <summary>
/// Compares two images for pixel equality
/// </summary>
/// <param name="fname1">first image file</param>
/// <param name="fname2">second image file</param>
/// <returns>true if images are identical</returns>
public static string PageCompare(string fname1, string fname2) {
try {
using (Bitmap bmp1 = new Bitmap(fname1))
using (Bitmap bmp2 = new Bitmap(fname2)) {
if (bmp1.Height != bmp2.Height || bmp1.Width != bmp2.Width)
return false;
// Convert image to int32 array with each int being one pixel
int cnt = bmp1.Width * bmp1.Height * 4 / 4;
BitmapData bmData1 = bmp1.LockBits(new Rectangle(0, 0, bmp1.Width, bmp1.Height),
ImageLockMode.ReadOnly, PixelFormat.Format32bppArgb);
BitmapData bmData2 = bmp2.LockBits(new Rectangle(0, 0, bmp2.Width, bmp2.Height),
ImageLockMode.ReadOnly, PixelFormat.Format32bppArgb);
Int32[] rgbValues1 = new Int32[cnt];
Int32[] rgbValues2 = new Int32[cnt];
// Copy the ARGB values into the array.
System.Runtime.InteropServices.Marshal.Copy(bmData1.Scan0, rgbValues1, 0, cnt);
System.Runtime.InteropServices.Marshal.Copy(bmData2.Scan0, rgbValues2, 0, cnt);
bmp1.UnlockBits(bmData1);
bmp2.UnlockBits(bmData2);
for (int i = 0; i < cnt; ++i) {
if (rgbValues1[i] != rgbValues2[i])
return false;
}
}
}
catch (Exception ex) {
return false;
}
// We made it this far so the images must match
return true;
}