mirror of
https://github.com/deepinsight/insightface.git
synced 2026-01-28 18:20:19 +00:00
19 lines
275 B
C++
19 lines
275 B
C++
/**
|
|
* Created by Jingyu Yan
|
|
* @date 2024-10-01
|
|
*/
|
|
|
|
#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;
|
|
} |