Jiale/test2_ort/examples/cv/test_lite_glint_arcface.cpp

155 lines
5.1 KiB
C++

//
// Created by DefTruth on 2021/6/25.
//
#include "lite/lite.h"
static void test_default()
{
std::string onnx_path = "../../../hub/onnx/cv/ms1mv3_arcface_r100.onnx";
std::string test_img_path0 = "../../../examples/lite/resources/test_lite_faceid_0.png";
std::string test_img_path1 = "../../../examples/lite/resources/test_lite_faceid_1.png";
lite::cv::faceid::GlintArcFace *glint_arcface = new lite::cv::faceid::GlintArcFace(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);
glint_arcface->detect(img_bgr0, face_content0);
glint_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 glint_arcface;
}
static void test_onnxruntime()
{
#ifdef ENABLE_ONNXRUNTIME
std::string onnx_path = "../../../hub/onnx/cv/ms1mv3_arcface_r100.onnx";
std::string test_img_path0 = "../../../examples/lite/resources/test_lite_faceid_0.png";
std::string test_img_path1 = "../../../examples/lite/resources/test_lite_faceid_2.png";
lite::onnxruntime::cv::faceid::GlintArcFace *glint_arcface =
new lite::onnxruntime::cv::faceid::GlintArcFace(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);
glint_arcface->detect(img_bgr0, face_content0);
glint_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 glint_arcface;
#endif
}
static void test_mnn()
{
#ifdef ENABLE_MNN
std::string mnn_path = "../../../hub/mnn/cv/ms1mv3_arcface_r100.mnn";
std::string test_img_path0 = "../../../examples/lite/resources/test_lite_faceid_0.png";
std::string test_img_path1 = "../../../examples/lite/resources/test_lite_faceid_2.png";
lite::mnn::cv::faceid::GlintArcFace *glint_arcface =
new lite::mnn::cv::faceid::GlintArcFace(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);
glint_arcface->detect(img_bgr0, face_content0);
glint_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 glint_arcface;
#endif
}
static void test_ncnn()
{
#ifdef ENABLE_NCNN
std::string param_path = "../../../hub/ncnn/cv/ms1mv3_arcface_r100.opt.param";
std::string bin_path = "../../../hub/ncnn/cv/ms1mv3_arcface_r100.opt.bin";
std::string test_img_path0 = "../../../examples/lite/resources/test_lite_faceid_0.png";
std::string test_img_path1 = "../../../examples/lite/resources/test_lite_faceid_2.png";
lite::ncnn::cv::faceid::GlintArcFace *glint_arcface =
new lite::ncnn::cv::faceid::GlintArcFace(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);
glint_arcface->detect(img_bgr0, face_content0);
glint_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 glint_arcface;
#endif
}
static void test_tnn()
{
#ifdef ENABLE_TNN
std::string proto_path = "../../../hub/tnn/cv/ms1mv3_arcface_r100.opt.tnnproto";
std::string model_path = "../../../hub/tnn/cv/ms1mv3_arcface_r100.opt.tnnmodel";
std::string test_img_path0 = "../../../examples/lite/resources/test_lite_faceid_0.png";
std::string test_img_path1 = "../../../examples/lite/resources/test_lite_faceid_2.png";
lite::tnn::cv::faceid::GlintArcFace *glint_arcface =
new lite::tnn::cv::faceid::GlintArcFace(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);
glint_arcface->detect(img_bgr0, face_content0);
glint_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 glint_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;
}