tnn_mobilenetv2_68.h
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// Created by DefTruth on 2021/11/21.
//
#ifndef LITE_AI_TOOLKIT_TNN_CV_TNN_MOBILENETV2_68_H
#define LITE_AI_TOOLKIT_TNN_CV_TNN_MOBILENETV2_68_H
#include "lite/tnn/core/tnn_core.h"
namespace tnncv
{
class LITE_EXPORTS TNNMobileNetV268 : public BasicTNNHandler
{
public:
explicit TNNMobileNetV268(const std::string &_proto_path,
const std::string &_model_path,
unsigned int _num_threads = 1); //
~TNNMobileNetV268() override = default;
private:
// In TNN: x*scale + bias
std::vector<float> scale_vals = {
1.0f / (255.f * 0.229f),
1.0f / (255.f * 0.224f),
1.0f / (255.f * 0.225f)
};
std::vector<float> bias_vals = {
-255.f * 0.485f * (1.0f / (255.f * 0.229f)),
-255.f * 0.456f * (1.0f / (255.f * 0.224f)),
-255.f * 0.406f * (1.0f / (255.f * 0.225f))
};
private:
void transform(const cv::Mat &mat) override; //
public:
void detect(const cv::Mat &mat, types::Landmarks &landmarks);
};
}
#endif //LITE_AI_TOOLKIT_TNN_CV_TNN_MOBILENETV2_68_H