c# winform實(shí)現(xiàn)人臉識(shí)別系統(tǒng)(文末附源碼)

本系統(tǒng)開發(fā)環(huán)境為Visual Studio 2010罢缸,使用.net 4.0開發(fā),使用AForge庫和Aipsdk庫和Newtonsoft.json庫和system.sqlite庫以及第三方插件DevExpress完成务蝠。

本系統(tǒng)特點(diǎn):分為人臉庫的錄入涮阔,將信息保存在sqlite數(shù)據(jù)庫中堕澄,該數(shù)據(jù)庫中使用一張表,字段有用戶姓名坛猪,性別,工號(hào)皂股,人臉圖片(圖像存入數(shù)據(jù)庫中可以點(diǎn)擊此鏈接查看)墅茉。

數(shù)據(jù)庫字段

本系統(tǒng)功能介紹:

打卡系統(tǒng)界面

首先構(gòu)造出的是本界面,首先說下個(gè)人信息欄呜呐,上方的人臉錄入和打卡是一個(gè)功能只要是調(diào)用本機(jī)攝像頭就斤,找到一張合適的角度拍下此張圖片,當(dāng)界面運(yùn)行時(shí):界面隱藏了“確定打卡”和“登記按鈕”蘑辑,因?yàn)椴淮_定的是當(dāng)前是打卡還是錄入信息洋机。

界面運(yùn)行時(shí)

如果選擇打卡,該打卡功能只要是調(diào)用攝像頭洋魂,此時(shí)界面變成

打卡界面

如果點(diǎn)擊確認(rèn)打卡绷旗,循環(huán)讀取數(shù)據(jù)庫人臉信息,當(dāng)相似度大于90的時(shí)候跳出循環(huán)忧设,讀取該條信息顯示在界面上刁标,打卡狀態(tài)為成功颠通。如果沒有大于90的就返回重新打卡(不方便人臉不截圖)址晕。

打卡成功

下面我將說下信息錄入功能,當(dāng)點(diǎn)擊信息錄入時(shí)打卡按鈕變成人臉錄入顿锰,個(gè)人信息文本框變成可用谨垃,此時(shí)可以輸入此人的信息,信息輸入完畢硼控,打開人臉錄入刘陶,最后點(diǎn)擊登記功能。


錄入信息

登記完成牢撼,信息讀入數(shù)據(jù)庫:

數(shù)據(jù)庫

此時(shí)整個(gè)功能就實(shí)現(xiàn)了匙隔。

下面講一下具體功能實(shí)現(xiàn),人臉識(shí)別當(dāng)然不是自己寫的熏版,調(diào)用的是百度AI開放平臺(tái)的SDK,

百度AI

然后需要?jiǎng)?chuàng)建一個(gè)應(yīng)用列表纷责,需要使用到的是API Key和Secret Key

應(yīng)用列表


調(diào)用代碼

然后調(diào)用攝像頭方面代碼。首先是獲取攝像頭代碼

攝像頭

FaceCommon是我自己寫的一個(gè)類撼短,獲取已插USB攝像頭硬件id

FaceCommon

最后最核心的還是人臉對(duì)比


人臉對(duì)比

核心代碼到此結(jié)束文末附源碼再膳,喜歡的話給個(gè)贊和打賞,不理解的地方曲横,歡迎各位留言或加qq

FaceCommon代碼

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using AForge.Video.DirectShow;

namespace RenLianShiBie

{

? ? public class FaceCommon

? ? {

? ? ? ? #region 方法

? ? ? ? /// <summary>

? ? ? ? /// 獲取已插USB攝像頭硬件Id

? ? ? ? /// </summary>

? ? ? ? /// <returns></returns>

? ? ? ? public static List<string> GetCameraDeviceId()

? ? ? ? {

? ? ? ? ? ? List<string> _cameraList = new List<string>();

? ? ? ? ? ? FilterInfoCollection _filterInfoCollection = new FilterInfoCollection(FilterCategory.VideoInputDevice);//獲取所有已插USB攝像頭驅(qū)動(dòng)信息

? ? ? ? ? ? if (_filterInfoCollection != null && _filterInfoCollection.Count > 0)

? ? ? ? ? ? {

? ? ? ? ? ? ? ? for (int i = 0; i < _filterInfoCollection.Count; i++)

? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? _cameraList.Add(_filterInfoCollection[i].MonikerString); //向集合中添加USB攝像頭硬件Id

? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? _cameraList.Remove(""); //移出空項(xiàng)

? ? ? ? ? ? ? ? return _cameraList;

? ? ? ? ? ? }

? ? ? ? ? ? else

? ? ? ? ? ? {

? ? ? ? ? ? ? ? return null;

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? #endregion

? ? }

}

宏定義?

public class UserImation

? ? {

? ? ? ? /// <summary>

? ? ? ? /// 用戶

? ? ? ? /// </summary>

? ? ? ? public const string strUser = "用戶";

? ? ? ? /// <summary>

? ? ? ? /// 性別

? ? ? ? /// </summary>

? ? ? ? public const string strGender = "性別";

? ? ? ? /// <summary>

? ? ? ? /// 工號(hào)

? ? ? ? /// </summary>

? ? ? ? public const string strNumber = "工號(hào)";

? ? ? ? /// <summary>

? ? ? ? /// 人臉庫圖片

? ? ? ? /// </summary>

? ? ? ? public const string strFace = "人臉庫圖片";

? ? }

? ? public class UserImation2

? ? {

? ? ? ? /// <summary>

? ? ? ? /// 用戶

? ? ? ? /// </summary>

? ? ? ? public static string strUser { get; set; }

? ? ? ? /// <summary>

? ? ? ? /// 性別

? ? ? ? /// </summary>

? ? ? ? public static string strGender { get; set; }

? ? ? ? /// <summary>

? ? ? ? /// 工號(hào)

? ? ? ? /// </summary>

? ? ? ? public static string strNumber { get; set; }

? ? ? ? /// <summary>

? ? ? ? /// 人臉庫圖片

? ? ? ? /// </summary>

? ? ? ? public static string strFace { get; set; }

? ? }

from1.cs如下

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using DevExpress.XtraEditors;

using AForge.Video.DirectShow;

using AForge.Video;

using System.Threading;

using Newtonsoft.Json.Linq;

using System.IO;

namespace RenLianShiBie

{

? ? public partial class Form1 : Form

? ? {

? ? ? ? public Form1()

? ? ? ? {

? ? ? ? ? ? InitializeComponent();

? ? ? ? }

? ? ? ? /// <summary>

? ? ? ? /// USB攝像頭硬件Id集合

? ? ? ? /// </summary>

? ? ? ? private List<string> _cameraList = new List<string>();

? ? ? ? /// <summary>

? ? ? ? /// 視頻驅(qū)動(dòng)

? ? ? ? /// </summary>

? ? ? ? private VideoCaptureDevice _videoCaptureDevice;

? ? ? ? /// <summary>

? ? ? ? /// 人臉圖片

? ? ? ? /// </summary>

? ? ? ? private Image imgobj;

? ? ? ? /// <summary>

? ? ? ? /// 路徑

? ? ? ? /// </summary>

? ? ? ? string strPath = @"F:\中地學(xué)習(xí)\人臉識(shí)別\測(cè)試\" ;

? ? ? ? /// <summary>

? ? ? ? /// 錄入信息按鈕

? ? ? ? /// </summary>

? ? ? ? /// <param name="sender"></param>

? ? ? ? /// <param name="e"></param>

? ? ? ? private void simpleButton1_Click(object sender, EventArgs e)

? ? ? ? {

? ? ? ? ? ? simpleButton2.Visible = false;

? ? ? ? ? ? simpleButton4.Text = "人臉錄入";

? ? ? ? ? ? simpleButton4.Visible =? true;

? ? ? ? ? ? simpleButton3.Visible = true;

? ? ? ? ? ? textEdit1.Properties.ReadOnly = textEdit2.Properties.ReadOnly = textEdit3.Properties.ReadOnly = false;

? ? ? ? }

? ? ? ? /// <summary>

? ? ? ? /// 界面初始化

? ? ? ? /// </summary>

? ? ? ? /// <param name="sender"></param>

? ? ? ? /// <param name="e"></param>

? ? ? ? private void Form1_Load(object sender, EventArgs e)

? ? ? ? {


? ? ? ? ? ? simpleButton2.Visible=false;

? ? ? ? ? ? simpleButton4.Text = "打卡";

? ? ? ? ? ? simpleButton4.Visible = true;

? ? ? ? ? ? simpleButton3.Visible = false;

? ? ? ? ? ? #region 填充攝像頭下拉框

? ? ? ? ? ? _cameraList = FaceCommon.GetCameraDeviceId();//獲取所有USB攝像頭硬件Id集合

? ? ? ? ? ? if (_cameraList != null && _cameraList.Count > 0)

? ? ? ? ? ? {

? ? ? ? ? ? ? ? foreach (var item in _cameraList)

? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? labelControl7.Text = item; //向下拉框中添加攝像頭列表

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }

? ? ? ? ? ? else

? ? ? ? ? ? {

? ? ? ? ? ? ? ? //如何未獲取到USB攝像頭則禁用此選擇

? ? ? ? ? ? ? ? labelControl7.Text = "當(dāng)前無攝像頭"; ;

? ? ? ? ? ? }

? ? ? ? ? ? #endregion


? ? ? ? }

? ? ? ? /// <summary>

? ? ? ? /// 人臉錄入

? ? ? ? /// </summary>

? ? ? ? /// <param name="sender"></param>

? ? ? ? /// <param name="e"></param>

? ? ? ? private void simpleButton4_Click(object sender, EventArgs e)

? ? ? ? {

? ? ? ? ? ? if (simpleButton4.Text == "打卡")

? ? ? ? ? ? {

? ? ? ? ? ? ? ? simpleButton1.Visible = false;

? ? ? ? ? ? ? ? simpleButton2.Visible = true;

? ? ? ? ? ? }

? ? ? ? ? ? if (this.labelControl7.Text != null)

? ? ? ? ? ? {

? ? ? ? ? ? ? ? _videoCaptureDevice = new VideoCaptureDevice(this.labelControl7.Text);

? ? ? ? ? ? ? ? _videoCaptureDevice.NewFrame += HandNewFrame;

? ? ? ? ? ? }

? ? ? ? ? ? if (_videoCaptureDevice != null)

? ? ? ? ? ? {

? ? ? ? ? ? ? ? _videoCaptureDevice.Start();

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? /// <summary>

? ? ? ? /// 播放事件

? ? ? ? /// </summary>

? ? ? ? /// <param name="sender"></param>

? ? ? ? /// <param name="args"></param>

? ? ? ? private void HandNewFrame(object sender, NewFrameEventArgs args)

? ? ? ? {

? ? ? ? ? ? try

? ? ? ? ? ? {

? ? ? ? ? ? ? ? this.Invoke(new Action(() =>

? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? if (args != null)

? ? ? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? ? ? this.pictureBox1.Image = args.Frame.Clone() as Image;

? ? ? ? ? ? ? ? ? ? //? imgobj = args.Frame.Clone() as Image;

? ? ? ? ? ? ? ? ? ? ? // imgobj.Save(@"F:\中地學(xué)習(xí)\人臉識(shí)別\測(cè)試\" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".jpg");

? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? }));

? ? ? ? ? ? }

? ? ? ? ? ? catch (Exception exception)

? ? ? ? ? ? {

? ? ? ? ? ? ? ? //throw;

? ? ? ? ? ? }?

? ? ? ? }

? ? ? ? /// <summary>

? ? ? ? /// 全部信息錄入

? ? ? ? /// </summary>

? ? ? ? /// <param name="sender"></param>

? ? ? ? /// <param name="e"></param>

? ? ? ? private void simpleButton3_Click(object sender, EventArgs e)

? ? ? ? {

? ? ? ? ? ? MySqlite.MySqliteConnection();

? ? ? ? ? ? UserImation2.strUser = textEdit1.Text;

? ? ? ? ? ? UserImation2.strGender = textEdit2.Text;

? ? ? ? ? ? UserImation2.strNumber = textEdit3.Text;

? ? ? ? ? ? if(UserImation2.strUser=="")//圖片以姓名命名喂柒,要求必須先填用戶姓名,才能錄照片

? ? ? ? ? ? {

? ? ? ? ? ? ? ? return;

? ? ? ? ? ? }

? ? ? ? ? ? //關(guān)閉

? ? ? ? ? ? if (_videoCaptureDevice != null)

? ? ? ? ? ? {

? ? ? ? ? ? ? ? _videoCaptureDevice.SignalToStop();

? ? ? ? ? ? }

? ? ? ? ? ? //點(diǎn)擊全部錄入時(shí)也就是拍照,獲取定格圖片

? ? ? ? ? ? imgobj = this.pictureBox1.Image;

? ? ? ? ? ? imgobj.Save(strPath + textEdit1.Text + ".jpg");

? ? ? ? ? ? MySqlite.MyInsertTable(UserImation2.strUser, UserImation2.strGender, UserImation2.strNumber, strPath + textEdit1.Text + ".jpg");

? ? ? ? }

? ? ? ? private void simpleButton2_Click(object sender, EventArgs e)

? ? ? ? {

? ? ? ? ? ? //關(guān)閉

? ? ? ? ? ? if (_videoCaptureDevice != null)

? ? ? ? ? ? {

? ? ? ? ? ? ? ? _videoCaptureDevice.SignalToStop();

? ? ? ? ? ? }

? ? ? ? ? ? imgobj = this.pictureBox1.Image;

? ? ? ? ? ? imgobj.Save(strPath +@"\打卡\" + "1.jpg");

? ? ? ? ? ? var API_KEY = "zKASe0f2AtMvzdd05fBQEEl4";

? ? ? ? ? ? var SECRET_KEY = "Q7C5nwHw9aLA815vL60mRRkhProZusq7";

? ? ? ? ? ? Baidu.Aip.Face.Face client = new Baidu.Aip.Face.Face(API_KEY, SECRET_KEY);

? ? ? ? ? ? MySqlite.MySqliteConnection();

? ? ? ? ? ? while(true)

? ? ? ? ? ? {

? ? ? ? ? ? ? ? string strPa = "";

? ? ? ? ? ? ? ? int nNum = 0;

? ? ? ? ? ? ? Dictionary<int ,List<string>> dic=? MySqlite.MySelectGridViewTable();

? ? ? ? ? ? ? foreach (KeyValuePair<int, List<string>> ergodic in dic)

? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? foreach (var myValues in ergodic.Value)

? ? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? ? nNum++;

? ? ? ? ? ? ? ? ? ? ? if (nNum == 1)

? ? ? ? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? ? ? ? textEdit1.Text = myValues;

? ? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? ? ? ? else if (nNum == 2)

? ? ? ? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? ? ? ? textEdit2.Text = myValues;

? ? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? ? ? ? else if (nNum == 3)

? ? ? ? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? ? ? ? textEdit3.Text = myValues;

? ? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? ? ? ? else if (nNum == 4)

? ? ? ? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? ? ? ? // textEdit4.Text = myValues;

? ? ? ? ? ? ? ? ? ? ? ? ? strPa = myValues;//獲取最后一個(gè)圖片的位置

? ? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? ? ? ? else

? ? ? ? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? ? }


? ? ? ? ? ? ? ? ? }


? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? ? ? ? ? var faces = new JArray

? ? ? ? ? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? ? ? ? ? new JObject

? ? ? ? ? ? ? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {"image", ReadImg(strPa)},

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {"image_type", "BASE64"},

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {"face_type", "LIVE"},

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {"quality_control", "LOW"},

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {"liveness_control", "NONE"},

? ? ? ? ? ? ? ? ? ? ? ? ? ? },

? ? ? ? ? ? ? ? ? ? ? ? ? ? new JObject

? ? ? ? ? ? ? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {"image", ReadImg(strPath +@"\打卡\"+ "1.jpg")},

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {"image_type", "BASE64"},

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {"face_type", "LIVE"},

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {"quality_control", "LOW"},

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {"liveness_control", "NONE"},

? ? ? ? ? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? ? ? ? ? };

? ? ? ? ? ? ? ? ? ? ? ? var result = client.Match(faces);

? ? ? ? ? ? ? ? try

? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? double dData = double.Parse(result.First.Next.Next.Next.Next.Next.First.First.First.ToString());

? ? ? ? ? ? ? ? ? ? if (dData >= 90)

? ? ? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? ? ? textEdit4.Text = "打卡成功";

? ? ? ? ? ? ? ? ? ? ? ? break;

? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? catch (System.Exception ex)

? ? ? ? ? ? ? ? {


? ? ? ? ? ? ? ? }


? ? ? ? ? ? }

? ? ? ? }

? ? ? ? /// <summary>

? ? ? ? /// 格式轉(zhuǎn)換

? ? ? ? /// </summary>

? ? ? ? /// <param name="img"></param>

? ? ? ? /// <returns></returns>

? ? ? ? public string ReadImg(string img)

? ? ? ? {

? ? ? ? ? ? return Convert.ToBase64String(File.ReadAllBytes(img));

? ? ? ? }

? ? }

}

數(shù)據(jù)庫代碼

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Data.SQLite;

using System.Data;

using DevExpress.XtraEditors;

using System.IO;

using System.Drawing;

namespace RenLianShiBie

{

? ? class MySqlite

? ? {

? ? ? ? static SQLiteConnection sqlCnn = null;

? ? ? ? /// <summary>

? ? ? ? /// 數(shù)據(jù)庫鏈接

? ? ? ? /// </summary>

? ? ? ? public static void MySqliteConnection()

? ? ? ? {

? ? ? ? ? ? try

? ? ? ? ? ? {

? ? ? ? ? ? ? ? string strPath = @"F:\中地學(xué)習(xí)\yuanma\FacecorePlatform_53da9c13-237f-4e2b-a5bd-29b74c3ea02e\faceView\RenMan.db";

? ? ? ? ? ? ? ? sqlCnn = new SQLiteConnection();

? ? ? ? ? ? ? ? sqlCnn.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + strPath;

? ? ? ? ? ? ? ? sqlCnn.Open();

? ? ? ? ? ? ? ? if (sqlCnn.State != ConnectionState.Open)

? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? XtraMessageBox.Show("數(shù)據(jù)庫連接失敗 ");

? ? ? ? ? ? ? ? ? ? return;

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }

? ? ? ? ? ? catch (System.Exception ex)

? ? ? ? ? ? {

? ? ? ? ? ? ? ? return;

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? /// <summary>

? ? ? ? /// 創(chuàng)建表

? ? ? ? /// </summary>

? ? ? ? public static void MyCreateTable()

? ? ? ? {

? ? ? ? ? ? SQLiteCommand mDbCmd = sqlCnn.CreateCommand();

? ? ? ? ? ? mDbCmd.CommandText = "SELECT COUNT(*) FROM sqlite_master where type='table' and name='QrCode';";

? ? ? ? ? ? if (0 == Convert.ToInt32(mDbCmd.ExecuteScalar()))

? ? ? ? ? ? {

? ? ? ? ? ? ? ? string sql = "CREATE TABLE " + "QrCode" + "(" + "用戶 string,性別 string,工號(hào) string,? 人臉庫 oleobject" + ")";

? ? ? ? ? ? ? ? SQLiteCommand oledbCmdup1 = new SQLiteCommand(sql, sqlCnn);

? ? ? ? ? ? ? ? oledbCmdup1.ExecuteNonQuery();

? ? ? ? ? ? }

? ? ? ? ? ? else

? ? ? ? ? ? {

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? /// <summary>

? ? ? ? /// 插入

? ? ? ? /// </summary>

? ? ? ? public static void MyInsertTable(string strUser,string strGender,string strNumber,string strFace)

? ? ? ? {

? ? ? ? ? ? //讀取人臉圖片

? ? ? ? ? ? FileStream fileStream = new FileStream(strFace, FileMode.Open);

? ? ? ? ? ? byte[] bFile = new byte[fileStream.Length];//分配數(shù)組大小

? ? ? ? ? ? fileStream.Read(bFile, 0, (int)fileStream.Length);//將文件內(nèi)容讀進(jìn)數(shù)組

? ? ? ? ? ? fileStream.Close();//關(guān)閉文件對(duì)象

? ? ? ? ? ? SQLiteCommand com = sqlCnn.CreateCommand();

? ? ? ? ? ? com.CommandText = "Insert into QrCode(用戶,性別,工號(hào),人臉庫) Values(@用戶,@性別, @工號(hào),@人臉庫)";

? ? ? ? ? ? com.Parameters.AddWithValue("@用戶", strUser);

? ? ? ? ? ? com.Parameters.AddWithValue("@性別", strGender);

? ? ? ? ? ? com.Parameters.AddWithValue("@工號(hào)", strNumber);

? ? ? ? ? ? com.Parameters.AddWithValue("@人臉庫", bFile);

? ? ? ? ? ? com.ExecuteNonQuery();

? ? ? ? ? ? XtraMessageBox.Show("增加人員信息成功");

? ? ? ? }

? ? ? ? /// <summary>

? ? ? ? /// 查詢

? ? ? ? /// </summary>

? ? ? ? /// <param name="table"></param>

? ? ? ? /// <returns></returns>

? ? ? ? public static Dictionary<int ,List<string>> MySelectGridViewTable()

? ? ? ? {

? ? ? ? ? ? string strUser = "";

? ? ? ? ? ? string strGender = "";

? ? ? ? ? ? string strNumber = "";

? ? ? ? ? ? string strFace = "";

? ? ? ? ? ? Dictionary<int ,List<string>> dic = new Dictionary<int,List<string>>();

? ? ? ? ? ? List<string> lstInformation = new List<string>();

? ? ? ? ? ? string sql = "select * from QrCode";

? ? ? ? ? ? SQLiteCommand oledbCmdup = new SQLiteCommand(sql, sqlCnn);

? ? ? ? ? ? SQLiteDataReader r = oledbCmdup.ExecuteReader();

? ? ? ? ? ? int num = 0;

? ? ? ? ? ? while (r.Read())

? ? ? ? ? ? {

? ? ? ? ? ? ? ? num++;

? ? ? ? ? ? ? ? strUser = r[UserImation.strUser].ToString();

? ? ? ? ? ? ? ? strGender = r[UserImation.strGender].ToString();

? ? ? ? ? ? ? ? strNumber = r[UserImation.strNumber].ToString();

? ? ? ? ? ? ? ? SQLiteCommand com = sqlCnn.CreateCommand();

? ? ? ? ? ? ? ? com.CommandText = "Select 人臉庫 From QrCode where 用戶=" + "'" + strUser + "'";

? ? ? ? ? ? ? ? byte[] bFile = (byte[])com.ExecuteScalar();//讀取之后轉(zhuǎn)換成二進(jìn)制字節(jié)數(shù)組

? ? ? ? ? ? ? ? if (bFile == null)

? ? ? ? ? ? ? ? {

? ? ? ? ? ? ? ? ? ? XtraMessageBox.Show("數(shù)據(jù)出錯(cuò)");

? ? ? ? ? ? ? ? ? ? return null;

? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? MemoryStream stream = new MemoryStream(bFile);

? ? ? ? ? ? ? ? Image img = Image.FromStream(stream);//將二進(jìn)制字節(jié)數(shù)組還原成原本的圖像

? ? ? ? ? ? ? ? img.Save(@"F:\中地學(xué)習(xí)\人臉識(shí)別\測(cè)試\臨時(shí)數(shù)據(jù)\" + num + ".jpg");

? ? ? ? ? ? ? ? strFace = @"F:\中地學(xué)習(xí)\人臉識(shí)別\測(cè)試\臨時(shí)數(shù)據(jù)\" + num + ".jpg";

? ? ? ? ? ? ? ? lstInformation.Add(strUser);

? ? ? ? ? ? ? ? lstInformation.Add(strGender);

? ? ? ? ? ? ? ? lstInformation.Add(strNumber);

? ? ? ? ? ? ? ? lstInformation.Add(strFace);

? ? ? ? ? ? ? ? dic.Add(num, lstInformation);

? ? ? ? ? ? }

? ? ? ? ? ? return dic;

? ? ? ? }

? ? }

}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末厨内,一起剝皮案震驚了整個(gè)濱河市不跟,隨后出現(xiàn)的幾起案子这刷,更是在濱河造成了極大的恐慌蒸绩,老刑警劉巖仙蚜,帶你破解...
    沈念sama閱讀 207,248評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件计露,死亡現(xiàn)場(chǎng)離奇詭異伊滋,居然都是意外死亡柬姚,警方通過查閱死者的電腦和手機(jī)讲竿,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門泥兰,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人题禀,你說我怎么就攤上這事鞋诗。” “怎么了迈嘹?”我有些...
    開封第一講書人閱讀 153,443評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵削彬,是天一觀的道長。 經(jīng)常有香客問我秀仲,道長融痛,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,475評(píng)論 1 279
  • 正文 為了忘掉前任神僵,我火速辦了婚禮雁刷,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘保礼。我一直安慰自己沛励,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,458評(píng)論 5 374
  • 文/花漫 我一把揭開白布炮障。 她就那樣靜靜地躺著目派,像睡著了一般。 火紅的嫁衣襯著肌膚如雪胁赢。 梳的紋絲不亂的頭發(fā)上企蹭,一...
    開封第一講書人閱讀 49,185評(píng)論 1 284
  • 那天,我揣著相機(jī)與錄音智末,去河邊找鬼谅摄。 笑死,一個(gè)胖子當(dāng)著我的面吹牛吹害,可吹牛的內(nèi)容都是我干的螟凭。 我是一名探鬼主播,決...
    沈念sama閱讀 38,451評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼它呀,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼螺男!你這毒婦竟也來了棒厘?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,112評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤下隧,失蹤者是張志新(化名)和其女友劉穎奢人,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體淆院,經(jīng)...
    沈念sama閱讀 43,609評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡何乎,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,083評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了土辩。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片支救。...
    茶點(diǎn)故事閱讀 38,163評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖拷淘,靈堂內(nèi)的尸體忽然破棺而出各墨,到底是詐尸還是另有隱情,我是刑警寧澤启涯,帶...
    沈念sama閱讀 33,803評(píng)論 4 323
  • 正文 年R本政府宣布贬堵,位于F島的核電站,受9級(jí)特大地震影響结洼,放射性物質(zhì)發(fā)生泄漏黎做。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,357評(píng)論 3 307
  • 文/蒙蒙 一松忍、第九天 我趴在偏房一處隱蔽的房頂上張望蒸殿。 院中可真熱鬧,春花似錦挽铁、人聲如沸伟桅。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至玖雁,卻和暖如春更扁,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背赫冬。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評(píng)論 1 261
  • 我被黑心中介騙來泰國打工浓镜, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人劲厌。 一個(gè)月前我還...
    沈念sama閱讀 45,636評(píng)論 2 355
  • 正文 我出身青樓膛薛,卻偏偏與公主長得像,于是被迫代替她去往敵國和親补鼻。 傳聞我的和親對(duì)象是個(gè)殘疾皇子哄啄,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,925評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容