mirror of
https://github.com/deepinsight/insightface.git
synced 2026-01-29 02:50:20 +00:00
18 lines
268 B
C++
18 lines
268 B
C++
|
|
//
|
||
|
|
// 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;
|
||
|
|
}
|