-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathnanodet_openvino.h
64 lines (50 loc) · 1.47 KB
/
nanodet_openvino.h
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//
// Create by RangiLyu
// 2021 / 1 / 12
//
#ifndef _NANODET_OPENVINO_H_
#define _NANODET_OPENVINO_H_
#include <string>
#include <opencv2/core.hpp>
#include <inference_engine.hpp>
typedef struct HeadInfo
{
std::string cls_layer;
std::string dis_layer;
int stride;
} HeadInfo;
typedef struct BoxInfo
{
float x1;
float y1;
float x2;
float y2;
float score;
int label;
} BoxInfo;
class NanoDet
{
public:
NanoDet(const char* param);
~NanoDet();
InferenceEngine::ExecutableNetwork network_;
InferenceEngine::InferRequest infer_request_;
// static bool hasGPU;
std::vector<HeadInfo> heads_info_{
// cls_pred|dis_pred|stride
{"cls_pred_stride_8", "dis_pred_stride_8", 8},
{"cls_pred_stride_16", "dis_pred_stride_16", 16},
{"cls_pred_stride_32", "dis_pred_stride_32", 32},
};
std::vector<BoxInfo> detect(cv::Mat image, float score_threshold, float nms_threshold);
private:
void preprocess(cv::Mat& image, InferenceEngine::Blob::Ptr& blob);
void decode_infer(const float*& cls_pred, const float*& dis_pred, int stride, float threshold, std::vector<std::vector<BoxInfo>>& results);
BoxInfo disPred2Bbox(const float*& dfl_det, int label, float score, int x, int y, int stride);
static void nms(std::vector<BoxInfo>& result, float nms_threshold);
std::string input_name_;
int input_size_ = 320;
int num_class_ = 80;
int reg_max_ = 7;
};
#endif //_NANODE_TOPENVINO_H_