91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 35.77MB
    文件類型: .rar
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2023-08-07
  • 語言: C#
  • 標簽: 人臉識別??ArcFace??2.1??

資源簡介

增加保存人臉到mssql數(shù)據(jù)庫的方法和從數(shù)據(jù)庫讀取人臉的方法。本程序不含數(shù)據(jù)庫文件,需要自己新建數(shù)據(jù)庫。使用前先申請虹軟開發(fā)者,免費申請得到APP_ID 和key等。從虹軟下載的C#sdk 2.1的dll覆蓋bin/Debug目錄下對應(yīng)的dll。在App.config填寫自己的APP_ID 和key即可正常使用,此ArcFace 2.0為本地調(diào)用,非網(wǎng)絡(luò)接口調(diào)用。調(diào)用無限制。開發(fā)工具vs2013,net4.5.1 上次寫錯版本,應(yīng)該是ArcFace 2.1。請勿下載錯sdk版本

資源截圖

代碼片段和文件信息

using?System;
using?System.Collections.Generic;
using?System.Drawing;
using?System.Windows.Forms;
using?ArcSoftFace.SDKModels;
using?ArcSoftFace.SDKUtil;
using?ArcSoftFace.Utils;
using?ArcSoftFace.Entity;
using?System.IO;
using?System.Configuration;
using?System.Threading;
using?AForge.Video.DirectShow;
using?System.Text.Regularexpressions;
using?System.Runtime.Serialization.Formatters.Binary;
using?System.Runtime.Serialization;
using?System.Runtime.InteropServices;
using?System.Data;
using?System.Data.SqlClient;
namespace?ArcSoftFace
{
????public?partial?class?FaceForm?:?Form
????{
????????//引擎Handle
????????private?IntPtr?pImageEngine?=?IntPtr.Zero;

????????//保存右側(cè)圖片路徑
????????private?string?image1Path;

????????//右側(cè)圖片人臉特征
????????private?IntPtr?image1Feature;

????????//保存對比圖片的列表
????????private?List?imagePathList?=?new?List();

????????//左側(cè)圖庫人臉特征列表
????????private?List?imagesFeatureList?=?new?List();

????????//相似度
????????private?float?threshold?=?0.8f;

????????//用于標記是否需要清除比對結(jié)果
????????private?bool?isCompare?=?false;

????????private?IntPtr?pcs;

????????#region?視頻模式下相關(guān)

????????//視頻引擎Handle
????????private?IntPtr?pVideoEngine?=?IntPtr.Zero;

????????//視頻引擎?FR?Handle?處理???FR和圖片引擎分開,減少強占引擎的問題
????????private?IntPtr?pVideoImageEngine?=?IntPtr.Zero;
????????///?
????????///?視頻輸入設(shè)備信息
????????///?

????????private?FilterInfoCollection?filterInfoCollection;
????????private?VideoCaptureDevice?deviceVideo;

????????//從數(shù)據(jù)庫讀取人臉庫數(shù)據(jù)存在list???2019.5.21加上
????????private?List?faceDb?=?new?List();
????????#endregion

????????public?FaceForm()
????????{
????????????InitializeComponent();
????????????InitEngines();
????????????videoSource.Hide();
????????????txtThreshold.Enabled?=?false;
????????????CheckForIllegalCrossThreadCalls?=?false;
????????}

????????///?
????????///?初始化引擎
????????///?

????????private?void?InitEngines()
????????{
????????????//讀取配置文件
????????????AppSettingsReader?reader?=?new?AppSettingsReader();
????????????string?appId?=?(string)reader.GetValue(“APP_ID“?typeof(string));
????????????string?sdkKey64?=?(string)reader.GetValue(“SDKKEY64“?typeof(string));
????????????string?sdkKey32?=?(string)reader.GetValue(“SDKKEY32“?typeof(string));

????????????var?is64CPU?=?Environment.Is64BitProcess;
????????????if?(is64CPU)
????????????{
????????????????if?(string.IsNullOrWhiteSpace(appId)?||?string.IsNullOrWhiteSpace(sdkKey64))
????????????????{
????????????????????chooseMultiImgBtn.Enabled?=?false;
????????????????????matchBtn.Enabled?=?false;
????????????????????btnClearFaceList.Enabled?=?false;
????????????????????chooseImgBtn.Enabled?=?false;
????????????????????MessageBox.Show(“請在App.config配置文件中先配置APP_ID和SDKKEY64!“);
????????????????????return;
????????????????}
????????????}
????????????else
????????????{
????????????????if?(string.IsNullOrWhiteSpace(appId)?

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件??????57856??2019-03-25?03:30??ArcSoftFace\.vs\ArcSoftFace\v14\.suo

?????文件????????767??2019-05-21?17:26??ArcSoftFace\ArcSoftFace\App.config

?????文件???????8656??2019-05-21?17:21??ArcSoftFace\ArcSoftFace\ArcSoftFace.csproj

?????文件??????44544??2019-03-25?03:30??ArcSoftFace\ArcSoftFace\bin\Debug\AForge.Controls.dll

?????文件??????17920??2019-03-25?03:30??ArcSoftFace\ArcSoftFace\bin\Debug\AForge.dll

?????文件?????262656??2019-03-25?03:30??ArcSoftFace\ArcSoftFace\bin\Debug\AForge.Imaging.dll

?????文件??????16384??2019-03-25?03:30??ArcSoftFace\ArcSoftFace\bin\Debug\AForge.Imaging.Formats.dll

?????文件??????68096??2019-03-25?03:30??ArcSoftFace\ArcSoftFace\bin\Debug\AForge.Math.dll

?????文件??????61440??2019-03-25?03:30??ArcSoftFace\ArcSoftFace\bin\Debug\AForge.Video.DirectShow.dll

?????文件??????20992??2019-03-25?03:30??ArcSoftFace\ArcSoftFace\bin\Debug\AForge.Video.dll

?????文件??????99328??2019-05-21?17:26??ArcSoftFace\ArcSoftFace\bin\Debug\ArcSoftFace.exe

?????文件????????767??2019-05-21?17:26??ArcSoftFace\ArcSoftFace\bin\Debug\ArcSoftFace.exe.config

?????文件??????73216??2019-05-21?17:26??ArcSoftFace\ArcSoftFace\bin\Debug\ArcSoftFace.pdb

?????文件??????24224??2019-05-21?17:26??ArcSoftFace\ArcSoftFace\bin\Debug\ArcSoftFace.vshost.exe

?????文件????????767??2019-05-21?17:26??ArcSoftFace\ArcSoftFace\bin\Debug\ArcSoftFace.vshost.exe.config

?????文件????????490??2016-03-09?13:48??ArcSoftFace\ArcSoftFace\bin\Debug\ArcSoftFace.vshost.exe.manifest

?????文件????????610??2019-05-10?17:29??ArcSoftFace\ArcSoftFace\bin\Debug\asf_install.dat

?????文件??????53760??2019-05-10?17:20??ArcSoftFace\ArcSoftFace\bin\Debug\AxInterop.WMPLib.dll

?????文件?????331264??2019-05-10?17:20??ArcSoftFace\ArcSoftFace\bin\Debug\Interop.WMPLib.dll

?????文件???44789760??2019-05-10?03:20??ArcSoftFace\ArcSoftFace\bin\Debug\libarcsoft_face.dll

?????文件?????388608??2019-05-10?03:20??ArcSoftFace\ArcSoftFace\bin\Debug\libarcsoft_face_engine.dll

?????文件?????519287??2019-03-25?03:30??ArcSoftFace\ArcSoftFace\doc\ArcSoftFace?C#?Demo說明文檔.pdf

?????文件????????162??2019-03-25?03:30??ArcSoftFace\ArcSoftFace\doc\~$cSoftFace說明文檔.docx

?????文件????????460??2019-03-25?03:30??ArcSoftFace\ArcSoftFace\Entity\FaceTrackUnit.cs

?????文件????????578??2019-03-25?03:30??ArcSoftFace\ArcSoftFace\Entity\ImageInfo.cs

?????文件??????43871??2019-05-21?17:26??ArcSoftFace\ArcSoftFace\FaceForm.cs

?????文件??????13740??2019-05-13?10:23??ArcSoftFace\ArcSoftFace\FaceForm.Designer.cs

?????文件??????81543??2019-05-13?10:48??ArcSoftFace\ArcSoftFace\FaceForm.resx

?????文件???????4286??2019-03-25?03:30??ArcSoftFace\ArcSoftFace\favicon.ico

?????文件??????44544??2019-03-25?03:30??ArcSoftFace\ArcSoftFace\lib\AForge.Controls.dll

............此處省略70個文件信息

評論

共有 條評論