Jiale/test2_ort/examples/cv/test_lite_sphere_face.cpp

155 lines
5.0 KiB
C++

//
// Created by DefTruth on 2021/7/14.
//
#include "lite/lite.h"
static void test_default()
{
std::string onnx_path = "../../../hub/onnx/cv/sphere20a_20171020.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::SphereFace *sphere_face = new lite::cv::faceid::SphereFace(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);
sphere_face->detect(img_bgr0, face_content0);
sphere_face->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 sphere_face;
}
static void test_onnxruntime()
{
#ifdef ENABLE_ONNXRUNTIME
std::string onnx_path = "../../../hub/onnx/cv/sphere20a_20171020.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::SphereFace *sphere_face =
new lite::onnxruntime::cv::faceid::SphereFace(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);
sphere_face->detect(img_bgr0, face_content0);
sphere_face->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 sphere_face;
#endif
}
static void test_mnn()
{
#ifdef ENABLE_MNN
std::string mnn_path = "../../../hub/mnn/cv/sphere20a_20171020.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::SphereFace *sphere_face =
new lite::mnn::cv::faceid::SphereFace(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);
sphere_face->detect(img_bgr0, face_content0);
sphere_face->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 sphere_face;
#endif
}
static void test_ncnn()
{
#ifdef ENABLE_NCNN
std::string param_path = "../../../hub/ncnn/cv/sphere20a_20171020.opt.param";
std::string bin_path = "../../../hub/ncnn/cv/sphere20a_20171020.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::SphereFace *sphere_face =
new lite::ncnn::cv::faceid::SphereFace(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);
sphere_face->detect(img_bgr0, face_content0);
sphere_face->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 sphere_face;
#endif
}
static void test_tnn()
{
#ifdef ENABLE_TNN
std::string proto_path = "../../../hub/tnn/cv/sphere20a_20171020.opt.tnnproto";
std::string model_path = "../../../hub/tnn/cv/sphere20a_20171020.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::SphereFace *sphere_face =
new lite::tnn::cv::faceid::SphereFace(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);
sphere_face->detect(img_bgr0, face_content0);
sphere_face->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 sphere_face;
#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;
}