本系統(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)擊此鏈接查看)墅茉。
本系統(tǒng)功能介紹:
首先構(gòu)造出的是本界面,首先說下個(gè)人信息欄呜呐,上方的人臉錄入和打卡是一個(gè)功能只要是調(diào)用本機(jī)攝像頭就斤,找到一張合適的角度拍下此張圖片,當(dāng)界面運(yùn)行時(shí):界面隱藏了“確定打卡”和“登記按鈕”蘑辑,因?yàn)椴淮_定的是當(dāng)前是打卡還是錄入信息洋机。
如果選擇打卡,該打卡功能只要是調(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í)整個(gè)功能就實(shí)現(xiàn)了匙隔。
下面講一下具體功能實(shí)現(xiàn),人臉識(shí)別當(dāng)然不是自己寫的熏版,調(diào)用的是百度AI開放平臺(tái)的SDK,
然后需要?jiǎng)?chuàng)建一個(gè)應(yīng)用列表纷责,需要使用到的是API Key和Secret Key
然后調(diào)用攝像頭方面代碼。首先是獲取攝像頭代碼
FaceCommon是我自己寫的一個(gè)類撼短,獲取已插USB攝像頭硬件id
最后最核心的還是人臉對(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;
? ? ? ? }
? ? }
}