溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

C#怎么驗(yàn)證兩個(gè)QQ頭像相似度

發(fā)布時(shí)間:2022-03-11 11:46:06 來(lái)源:億速云 閱讀:110 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹了C#怎么驗(yàn)證兩個(gè)QQ頭像相似度的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇C#怎么驗(yàn)證兩個(gè)QQ頭像相似度文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。

利用c#查看出某個(gè)其他qq的頭像與自己頭像的相似度,先看效果圖

C#怎么驗(yàn)證兩個(gè)QQ頭像相似度

這里我是將左邊的頭像作為比對(duì)的基本圖,我目前做的是一圖比對(duì)一圖,因?yàn)槔斫夂昧艘粚?duì)一,一對(duì)多也不難,我們可以得出相似的像素,然后大于多少百分比就是同一圖的改變了,以下是完整代碼

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號(hào)查看顯示,右邊輸入別人qq號(hào),點(diǎn)擊查看,點(diǎn)擊驗(yàn)證,得出結(jié)果。";
        }

        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 = "相同像素個(gè)數(shù):" + countSame + ",不同像素個(gè)數(shù):" + countDifferent + "用時(shí):" + stopwatch.ElapsedMilliseconds + " 毫秒";
        }
        //byte[] 轉(zhuǎn)圖片  
        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(); 這兩句都可以,至于區(qū)別么,下面有解釋
                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);
            // 設(shè)置畫(huà)布的描繪質(zhì)量         
            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();
            // 以下代碼為保存圖片時(shí),設(shè)置壓縮質(zhì)量     
            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("請(qǐng)輸入qq號(hào)!");
                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("請(qǐng)輸入正確的qq號(hào)!");
            }
        }

        private void button4_Click(object sender, EventArgs e)
        {
            if (this.MyQQ.Text == "")
            {
                MessageBox.Show("請(qǐng)輸入qq號(hào)!");
                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("請(qǐng)輸入正確的qq號(hào)!");
            }
        }
    }
}

關(guān)于“C#怎么驗(yàn)證兩個(gè)QQ頭像相似度”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“C#怎么驗(yàn)證兩個(gè)QQ頭像相似度”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI