【更新】完成人脸检测和特征提取模块

This commit is contained in:
wdp
2025-01-19 23:41:10 +08:00
parent 05619a014f
commit 18d649a636
13 changed files with 677 additions and 22 deletions

14
include/AppCfg.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include <string>
class AppCfg {
public:
static void SetWorkPath(const std::string& work_path);
static const std::string GetWorkPath();
static bool SetLicense(const std::string& license);
static void SetFaceMatchThreshold(float threshold);
private:
static std::string m_work_path; // 静态成员变量声明
static bool m_auth;
};