资源简介
实现了以下接口
https://api-cn.faceplusplus.com/facepp/v3/compare
https://api-cn.faceplusplus.com/facepp/v3/detect
https://api-cn.faceplusplus.com/facepp/v3/faceset/create
https://api-cn.faceplusplus.com/facepp/v3/faceset/addface
https://api-cn.faceplusplus.com/facepp/v3/search
人脸识别,人脸集合创建,查找,两张人脸图片比对
并对返回结果的json反序列化到实体对象,结果一目了然。
注: 前提需要创建一个免费的测试账号-------
//注册自己的face++账号,地址:https://console.faceplusplus.com.cn/register
String strApiKey = "";
String strApiSecret = "";
//如果需要上传人脸到人脸集合,请先创建人脸集合后填入得到的facesetToken, 人脸添加到人脸集合时需要用它制定哪个集合
String strFacesetToken = "";
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.xml.Linq;
using WindowsFormsApplication1.Entities;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
String picPath1 = ““;
String picPath2 = ““;
//OuterId:账号下全局唯一的 FaceSet 自定义标识,可以生成一个UUID作为outer_id
String strOuterId = “26c543b95fa142a5985c0aaab8b854d2“;//System.Guid.NewGuid().ToString(“N“);
//注册自己的face++账号,地址:https://console.faceplusplus.com.cn/register
String strApiKey = ““;
String strApiSecret = ““;
//请先创建人脸集合后填入得到的facesetToken 人脸添加到人脸集合时需要用它制定哪个集合
String strFacesetToken = ““;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender EventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.title = “选择文件“;
openFileDialog.Filter = “jpg文件|*.jpg|png文件|*.png|所有文件|*.*“;
openFileDialog.FileName = string.Empty;
openFileDialog.FilterIndex = 1;
openFileDialog.RestoreDirectory = true;
openFileDialog.DefaultExt = “jpg“;
DialogResult result = openFileDialog.ShowDialog();
if (result == System.Windows.Forms.DialogResult.Cancel)
{
return;
}
String filepath = openFileDialog.FileName;
pictureBox1.ImageLocation = filepath;
picPath1 = filepath;
}
private void button2_Click(object sender EventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.title = “选择文件“;
openFileDialog.Filter = “jpg文件|*.jpg|png文件|*.png|所有文件|*.*“;
openFileDialog.FileName = string.Empty;
openFileDialog.FilterIndex = 1;
openFileDialog.RestoreDirectory = true;
openFileDialog.DefaultExt = “jpg“;
DialogResult result = openFileDialog.ShowDialog();
if (result == System.Windows.Forms.DialogResult.Cancel)
{
return;
}
String filepath = openFileDialog.FileName;
pictureBox2.ImageLocation = filepath;
picPath2= filepath;
}
private void button3_Click(object sender EventArgs e)
{
Dictionaryject> verifyPostParameters = new Dictionaryject>();
verifyPostParameters.Add(“api_key“ strApiKey);
verifyPostParameters.Add(“api_secret“ strApiSecret);
Bitmap bmp = new Bitmap(picPath1); // 图片地址
byte[] fileIma
- 上一篇:c#上位机串口通信助手源代码194215
- 下一篇:AES加密算法C#实现带中文说明
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
- vb调用c#编写的串口DLL文件(vb源码
评论
共有 条评论