iis服务器助手广告广告
返回顶部
首页 > 资讯 > 精选 >C#怎么验证两个QQ头像相似度
  • 347
分享到

C#怎么验证两个QQ头像相似度

2023-06-29 11:06:22 347人浏览 八月长安
摘要

这篇文章主要介绍了C#怎么验证两个QQ头像相似度的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇C#怎么验证两个QQ头像相似度文章都会有所收获,下面我们一起来看看吧。利用c#查看出某个其他qq的头像与自己头像的相

这篇文章主要介绍了C#怎么验证两个QQ头像相似度的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇C#怎么验证两个QQ头像相似度文章都会有所收获,下面我们一起来看看吧。

利用c#查看出某个其他qq的头像与自己头像的相似度,先看效果图

C#怎么验证两个QQ头像相似度

这里我是将左边的头像作为比对的基本图,我目前做的是一图比对一图,因为理解好了一对一,一对多也不难,我们可以得出相似的像素,然后大于多少百分比就是同一图的改变了,以下是完整代码

using Newtonsoft.JSON;using Newtonsoft.json.Linq;using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.Drawing;using System.Drawing.Drawing2D;using System.Drawing.Imaging;using System.IO;using System.Linq;using System.net;using System.Net.Http;using System.Text;using System.Threading.Tasks;using System.windows.FORMs;namespace WindowsFormsApp1{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        public static int width; //图片宽        public static int height;//图片高        public static string mypicurl;//我的图片地址        public static string picurl;//图片地址        private void Form1_Load(object sender, EventArgs e)        {            this.MyPicture.SizeMode = PictureBoxSizeMode.StretchImage;            this.MyPicture.BorderStyle = BorderStyle.FixedSingle;            this.OtherPicture.SizeMode = PictureBoxSizeMode.StretchImage;            this.OtherPicture.BorderStyle = BorderStyle.FixedSingle;            this.explain.Text = "操作步骤:左边输入自己qq号查看显示,右边输入别人qq号,点击查看,点击验证,得出结果。";        }        private void button2_Click(object sender, EventArgs e)        {            Stopwatch stopwatch = new Stopwatch();            stopwatch.Start();            int countSame = 0;            int countDifferent = 0;            Image img = this.MyPicture.Image;            Bitmap bitmapSource = new Bitmap(img);            //Bitmap bitmapSource = BytesToBitmap(ResizeImage(mypicurl));            width = bitmapSource.Width;            height = bitmapSource.Height;            Bitmap bitmapTarget = BytesToBitmap(ResizeImage(picurl));            //照片尺寸必须一样            for (int i = 0; i < bitmapTarget.Width; i++)            {                for (int j = 0; j < bitmapTarget.Height; j++)                {                    if (bitmapSource.GetPixel(i, j).Equals(bitmapTarget.GetPixel(i, j)))                    {                        countSame++;                    }                    else                    {                        countDifferent++;                    }                }            }            stopwatch.Stop();            this.result.Text = "相同像素个数:" + countSame + ",不同像素个数:" + countDifferent + "用时:" + stopwatch.ElapsedMilliseconds + " 毫秒";        }        //byte[] 转图片          public static Bitmap BytesToBitmap(byte[] Bytes)        {            MemoryStream stream = null;            try            {                stream = new MemoryStream(Bytes);                return new Bitmap((Image)new Bitmap(stream));            }            catch (ArgumentNullException ex)            {                throw ex;            }            catch (ArgumentException ex)            {                throw ex;            }            finally            {                stream.Close();            }        }        /// <summary>        /// 图片大小裁剪        /// </summary>        /// <param name="filePath"></param>        /// <returns></returns>        public static byte[] ResizeImage(string filePath)        {            WEBRequest request = (WebRequest)HttpWebRequest.Create(filePath);            WebResponse response = request.GetResponse();            using (Stream stream = response.GetResponseStream())            {                Bitmap bm = (Bitmap)Image.FromStream(stream);                bm = GetThumbnail(bm, height, width);                MemoryStream ms = new MemoryStream();                bm.Save(ms, System.Drawing.Imaging.ImageFormat.Bmp);                byte[] bytes = ms.GetBuffer();  //byte[]   bytes=   ms.ToArray(); 这两句都可以,至于区别么,下面有解释                ms.Close();                return bytes;            }        }        /// <summary>        /// 修改图片的大小        /// </summary>        /// <param name="b"></param>        /// <param name="destHeight"></param>        /// <param name="destWidth"></param>        /// <returns></returns>        public static Bitmap GetThumbnail(Bitmap b, int destHeight, int destWidth)        {            System.Drawing.Image imgSource = b;            System.Drawing.Imaging.ImageFormat thisFormat = imgSource.RawFormat;            int sW = 0, sH = 0;            // 按比例缩放                       int sWidth = imgSource.Width;            int sHeight = imgSource.Height;            if (sHeight > destHeight || sWidth > destWidth)            {                if ((sWidth * destHeight) > (sHeight * destWidth))                {                    sW = destWidth;                    sH = (destWidth * sHeight) / sWidth;                }                else                {                    sH = destHeight;                    sW = (sWidth * destHeight) / sHeight;                }            }            else            {                sW = sWidth;                sH = sHeight;            }            Bitmap outBmp = new Bitmap(destWidth, destHeight);            Graphics g = Graphics.FromImage(outBmp);            g.Clear(Color.Transparent);            // 设置画布的描绘质量                     g.CompositingQuality = CompositingQuality.HighQuality;            g.SmoothingMode = SmoothingMode.HighQuality;            g.InterpolationMode = InterpolationMode.HighQualityBicubic;            g.DrawImage(imgSource, new Rectangle((destWidth - sW) / 2, (destHeight - sH) / 2, sW, sH), 0, 0, imgSource.Width, imgSource.Height, GraphicsUnit.Pixel);            g.Dispose();            // 以下代码为保存图片时,设置压缩质量                 EncoderParameters encoderParams = new EncoderParameters();            long[] quality = new long[1];            quality[0] = 100;            EncoderParameter encoderParam = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, quality);            encoderParams.Param[0] = encoderParam;            imgSource.Dispose();            return outBmp;        }        private void button3_Click(object sender, EventArgs e)        {            if (this.OtherQQ.Text == "")            {                MessageBox.Show("请输入qq号!");                return;            }            HttpClient httpClient = new HttpClient();            string url = "https://api.usuuu.com/qq/" + this.OtherQQ.Text;            var rsp = httpClient.GetAsync(url).Result;            var str = rsp.Content.ReadAsStringAsync().Result;            JObject jo = (JObject)JsonConvert.DeserializeObject(str);            if ((string)jo["code"] == "200")             {                Image pic = Image.FromStream(WebRequest.Create((string)jo["data"]["avatar"]).GetResponse().GetResponseStream());                this.OtherPicture.Image = pic;                picurl = (string)jo["data"]["avatar"];            }            else            {                MessageBox.Show("请输入正确的qq号!");            }        }        private void button4_Click(object sender, EventArgs e)        {            if (this.MyQQ.Text == "")            {                MessageBox.Show("请输入qq号!");                return;            }            HttpClient httpClient = new HttpClient();            string url = "https://api.usuuu.com/qq/" + this.MyQQ.Text;            var rsp = httpClient.GetAsync(url).Result;            var str = rsp.Content.ReadAsStringAsync().Result;            JObject jo = (JObject)JsonConvert.DeserializeObject(str);            if ((string)jo["code"] == "200")            {                Image pic = Image.FromStream(WebRequest.Create((string)jo["data"]["avatar"]).GetResponse().GetResponseStream());                this.MyPicture.Image = pic;                mypicurl = (string)jo["data"]["avatar"];            }            else            {                MessageBox.Show("请输入正确的qq号!");            }        }    }}

关于“C#怎么验证两个QQ头像相似度”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“C#怎么验证两个QQ头像相似度”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网精选频道。

--结束END--

本文标题: C#怎么验证两个QQ头像相似度

本文链接: https://www.lsjlt.com/news/324485.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • C++ 生态系统中流行库和框架的贡献指南
    作为 c++++ 开发人员,通过遵循以下步骤即可为流行库和框架做出贡献:选择一个项目并熟悉其代码库。在 issue 跟踪器中寻找适合初学者的问题。创建一个新分支,实现修复并添加测试。提交...
    99+
    2024-05-14
    框架 c++ 流行库 git
  • C++ 生态系统中流行库和框架的社区支持情况
    c++++生态系统中流行库和框架的社区支持情况:boost:活跃的社区提供广泛的文档、教程和讨论区,确保持续的维护和更新。qt:庞大的社区提供丰富的文档、示例和论坛,积极参与开发和维护。...
    99+
    2024-05-14
    生态系统 社区支持 c++ overflow 标准库
  • c++中if elseif使用规则
    c++ 中 if-else if 语句的使用规则为:语法:if (条件1) { // 执行代码块 1} else if (条件 2) { // 执行代码块 2}// ...else ...
    99+
    2024-05-14
    c++
  • c++中的继承怎么写
    继承是一种允许类从现有类派生并访问其成员的强大机制。在 c++ 中,继承类型包括:单继承:一个子类从一个基类继承。多继承:一个子类从多个基类继承。层次继承:多个子类从同一个基类继承。多层...
    99+
    2024-05-14
    c++
  • c++中如何使用类和对象掌握目标
    在 c++ 中创建类和对象:使用 class 关键字定义类,包含数据成员和方法。使用对象名称和类名称创建对象。访问权限包括:公有、受保护和私有。数据成员是类的变量,每个对象拥有自己的副本...
    99+
    2024-05-14
    c++
  • c++中优先级是什么意思
    c++ 中的优先级规则:优先级高的操作符先执行,相同优先级的从左到右执行,括号可改变执行顺序。操作符优先级表包含从最高到最低的优先级列表,其中赋值运算符具有最低优先级。通过了解优先级,可...
    99+
    2024-05-14
    c++
  • c++中a+是什么意思
    c++ 中的 a+ 运算符表示自增运算符,用于将变量递增 1 并将结果存储在同一变量中。语法为 a++,用法包括循环和计数器。它可与后置递增运算符 ++a 交换使用,后者在表达式求值后递...
    99+
    2024-05-14
    c++
  • c++中a.b什么意思
    c++kquote>“a.b”表示对象“a”的成员“b”,用于访问对象成员,可用“对象名.成员名”的语法。它还可以用于访问嵌套成员,如“对象名.嵌套成员名.成员名”的语法。 c++...
    99+
    2024-05-14
    c++
  • C++ 并发编程库的优缺点
    c++++ 提供了多种并发编程库,满足不同场景下的需求。线程库 (std::thread) 易于使用但开销大;异步库 (std::async) 可异步执行任务,但 api 复杂;协程库 ...
    99+
    2024-05-14
    c++ 并发编程
  • 如何在 Golang 中备份数据库?
    在 golang 中备份数据库对于保护数据至关重要。可以使用标准库中的 database/sql 包,或第三方包如 github.com/go-sql-driver/mysql。具体步骤...
    99+
    2024-05-14
    golang 数据库备份 mysql git 标准库
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作