gpt4 book ai didi

c# - 如何检查两张图片是否相同

转载 作者:行者123 更新时间:2023-11-30 23:25:41 25 4
gpt4 key购买 nike

<分区>

我有超过 3000 张图片,1500 张小图片和 1500 张大图片。我想检查小图像是否与大图像相同作为示例large image & small image .

我使用以下代码检查图像,但对所有图像(相同或不同)返回错误结果谁能帮我解决这个问题?

    public static bool IsEqual(this BitmapImage image1, BitmapImage image2)
{
if (image1 == null || image2 == null)
{
return false;
}
return image1.ToBytes().SequenceEqual(image2.ToBytes());
}

public static byte[] ToBytes(this BitmapImage image)
{
byte[] data = new byte[] { };
if (image != null)
{
try
{
var encoder = new BmpBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create(image));
using (MemoryStream ms = new MemoryStream())
{
encoder.Save(ms);
data = ms.ToArray();
}
return data;
}
catch (Exception ex)
{
}
}
return data;
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com