Add the inspireface project to cpp-package.

This commit is contained in:
JingyuYan
2024-05-02 01:27:29 +08:00
parent e90dacb3cf
commit 08d7e96f79
431 changed files with 370534 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
//
// Created by Tunm-Air13 on 2023/10/11.
//
#include <iostream>
#include "inspireface/feature_hub/persistence/sqlite_faces_manage.h"
using namespace inspire;
int main() {
SQLiteFaceManage db;
db.OpenDatabase("t.db");
db.ViewTotal();
return 0;
}