155 lines
5.2 KiB
C++
155 lines
5.2 KiB
C++
//
|
|
// Created by DefTruth on 2021/7/7.
|
|
//
|
|
|
|
#include "lite/lite.h"
|
|
|
|
static void test_default()
|
|
{
|
|
std::string onnx_path = "../../../hub/onnx/cv/focal-arcface-ms1m-ir50-epoch120.onnx";
|
|
std::string test_img_path0 = "../../../examples/lite/resources/test_lite_focal_arcface_0.png";
|
|
std::string test_img_path1 = "../../../examples/lite/resources/test_lite_focal_arcface_1.png";
|
|
|
|
lite::cv::faceid::FocalArcFace *focal_arcface = new lite::cv::faceid::FocalArcFace(onnx_path);
|
|
|
|
lite::types::FaceContent face_content0, face_content1;
|
|
cv::Mat img_bgr0 = cv::imread(test_img_path0);
|
|
cv::Mat img_bgr1 = cv::imread(test_img_path1);
|
|
focal_arcface->detect(img_bgr0, face_content0);
|
|
focal_arcface->detect(img_bgr1, face_content1);
|
|
|
|
if (face_content0.flag && face_content1.flag)
|
|
{
|
|
float sim = lite::utils::math::cosine_similarity<float>(
|
|
face_content0.embedding, face_content1.embedding);
|
|
std::cout << "Default Version Detected Sim: " << sim << std::endl;
|
|
}
|
|
|
|
delete focal_arcface;
|
|
}
|
|
|
|
static void test_onnxruntime()
|
|
{
|
|
#ifdef ENABLE_ONNXRUNTIME
|
|
std::string onnx_path = "../../../hub/onnx/cv/focal-arcface-ms1m-ir50-epoch120.onnx";
|
|
std::string test_img_path0 = "../../../examples/lite/resources/test_lite_focal_arcface_0.png";
|
|
std::string test_img_path1 = "../../../examples/lite/resources/test_lite_focal_arcface_2.png";
|
|
|
|
lite::onnxruntime::cv::faceid::FocalArcFace *focal_arcface =
|
|
new lite::onnxruntime::cv::faceid::FocalArcFace(onnx_path);
|
|
|
|
lite::types::FaceContent face_content0, face_content1;
|
|
cv::Mat img_bgr0 = cv::imread(test_img_path0);
|
|
cv::Mat img_bgr1 = cv::imread(test_img_path1);
|
|
focal_arcface->detect(img_bgr0, face_content0);
|
|
focal_arcface->detect(img_bgr1, face_content1);
|
|
|
|
if (face_content0.flag && face_content1.flag)
|
|
{
|
|
float sim = lite::utils::math::cosine_similarity<float>(
|
|
face_content0.embedding, face_content1.embedding);
|
|
std::cout << "ONNXRuntime Version Detected Sim: " << sim << std::endl;
|
|
}
|
|
|
|
delete focal_arcface;
|
|
#endif
|
|
}
|
|
|
|
static void test_mnn()
|
|
{
|
|
#ifdef ENABLE_MNN
|
|
std::string mnn_path = "../../../hub/mnn/cv/focal-arcface-ms1m-ir50-epoch120.mnn";
|
|
std::string test_img_path0 = "../../../examples/lite/resources/test_lite_focal_arcface_0.png";
|
|
std::string test_img_path1 = "../../../examples/lite/resources/test_lite_focal_arcface_2.png";
|
|
|
|
lite::mnn::cv::faceid::FocalArcFace *focal_arcface =
|
|
new lite::mnn::cv::faceid::FocalArcFace(mnn_path);
|
|
|
|
lite::types::FaceContent face_content0, face_content1;
|
|
cv::Mat img_bgr0 = cv::imread(test_img_path0);
|
|
cv::Mat img_bgr1 = cv::imread(test_img_path1);
|
|
focal_arcface->detect(img_bgr0, face_content0);
|
|
focal_arcface->detect(img_bgr1, face_content1);
|
|
|
|
if (face_content0.flag && face_content1.flag)
|
|
{
|
|
float sim = lite::utils::math::cosine_similarity<float>(
|
|
face_content0.embedding, face_content1.embedding);
|
|
std::cout << "MNN Version Detected Sim: " << sim << std::endl;
|
|
}
|
|
|
|
delete focal_arcface;
|
|
#endif
|
|
}
|
|
|
|
static void test_ncnn()
|
|
{
|
|
#ifdef ENABLE_NCNN
|
|
std::string param_path = "../../../hub/ncnn/cv/focal-arcface-ms1m-ir50-epoch120.opt.param";
|
|
std::string bin_path = "../../../hub/ncnn/cv/focal-arcface-ms1m-ir50-epoch120.opt.bin";
|
|
std::string test_img_path0 = "../../../examples/lite/resources/test_lite_focal_arcface_0.png";
|
|
std::string test_img_path1 = "../../../examples/lite/resources/test_lite_focal_arcface_2.png";
|
|
|
|
lite::ncnn::cv::faceid::FocalArcFace *focal_arcface =
|
|
new lite::ncnn::cv::faceid::FocalArcFace(param_path, bin_path);
|
|
|
|
lite::types::FaceContent face_content0, face_content1;
|
|
cv::Mat img_bgr0 = cv::imread(test_img_path0);
|
|
cv::Mat img_bgr1 = cv::imread(test_img_path1);
|
|
focal_arcface->detect(img_bgr0, face_content0);
|
|
focal_arcface->detect(img_bgr1, face_content1);
|
|
|
|
if (face_content0.flag && face_content1.flag)
|
|
{
|
|
float sim = lite::utils::math::cosine_similarity<float>(
|
|
face_content0.embedding, face_content1.embedding);
|
|
std::cout << "NCNN Version Detected Sim: " << sim << std::endl;
|
|
}
|
|
|
|
delete focal_arcface;
|
|
#endif
|
|
}
|
|
|
|
static void test_tnn()
|
|
{
|
|
#ifdef ENABLE_TNN
|
|
std::string proto_path = "../../../hub/tnn/cv/focal-arcface-ms1m-ir50-epoch120.opt.tnnproto";
|
|
std::string model_path = "../../../hub/tnn/cv/focal-arcface-ms1m-ir50-epoch120.opt.tnnmodel";
|
|
std::string test_img_path0 = "../../../examples/lite/resources/test_lite_focal_arcface_0.png";
|
|
std::string test_img_path1 = "../../../examples/lite/resources/test_lite_focal_arcface_2.png";
|
|
|
|
lite::tnn::cv::faceid::FocalArcFace *focal_arcface =
|
|
new lite::tnn::cv::faceid::FocalArcFace(proto_path, model_path);
|
|
|
|
lite::types::FaceContent face_content0, face_content1;
|
|
cv::Mat img_bgr0 = cv::imread(test_img_path0);
|
|
cv::Mat img_bgr1 = cv::imread(test_img_path1);
|
|
focal_arcface->detect(img_bgr0, face_content0);
|
|
focal_arcface->detect(img_bgr1, face_content1);
|
|
|
|
if (face_content0.flag && face_content1.flag)
|
|
{
|
|
float sim = lite::utils::math::cosine_similarity<float>(
|
|
face_content0.embedding, face_content1.embedding);
|
|
std::cout << "TNN Version Detected Sim: " << sim << std::endl;
|
|
}
|
|
|
|
delete focal_arcface;
|
|
#endif
|
|
}
|
|
|
|
static void test_lite()
|
|
{
|
|
test_default();
|
|
test_onnxruntime();
|
|
test_mnn();
|
|
test_ncnn();
|
|
test_tnn();
|
|
}
|
|
|
|
int main(__unused int argc, __unused char *argv[])
|
|
{
|
|
test_lite();
|
|
return 0;
|
|
}
|