mirror of
https://github.com/Kagami/go-face.git
synced 2025-10-07 08:30:50 +08:00
10 lines
202 B
C++
10 lines
202 B
C++
#include <unordered_map>
|
|
|
|
typedef dlib::matrix<float,128,1> sample_type;
|
|
|
|
int classify(
|
|
const std::vector<sample_type>& samples,
|
|
std::unordered_map<int, int>& cats,
|
|
const sample_type& test_sample
|
|
);
|