【更新】完成人脸检测和特征提取模块
This commit is contained in:
14
include/AppCfg.h
Normal file
14
include/AppCfg.h
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user