-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest_lite_nanodet.cpp
57 lines (38 loc) · 1.4 KB
/
test_lite_nanodet.cpp
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
//
// Created by DefTruth on 2021/10/2.
//
#include "lite/lite.h"
static void test_nanodet()
{
std::string onnx_path = "../hub/onnx/cv/nanodet_m.onnx";
std::string test_img_path = "../resources/9.jpg";
std::string save_img_path = "../logs/9.jpg";
auto *nanodet = new lite::cv::detection::NanoDet(onnx_path);
std::vector<lite::types::Boxf> detected_boxes;
cv::Mat img_bgr = cv::imread(test_img_path);
nanodet->detect(img_bgr, detected_boxes, 0.3f);
lite::utils::draw_boxes_inplace(img_bgr, detected_boxes);
cv::imwrite(save_img_path, img_bgr);
std::cout << "NanoDet Detected Boxes Num: " << detected_boxes.size() << std::endl;
delete nanodet;
}
static void test_nanodet_plus()
{
std::string onnx_path = "../hub/onnx/cv/nanodet-plus-m-1.5x_416.onnx";
std::string test_img_path = "../resources/9.jpg";
std::string save_img_path = "../logs/9_plus.jpg";
auto *nanodet_plus = new lite::cv::detection::NanoDetPlus(onnx_path);
std::vector<lite::types::Boxf> detected_boxes;
cv::Mat img_bgr = cv::imread(test_img_path);
nanodet_plus->detect(img_bgr, detected_boxes);
lite::utils::draw_boxes_inplace(img_bgr, detected_boxes);
cv::imwrite(save_img_path, img_bgr);
std::cout << "NanoDetPlus Detected Boxes Num: " << detected_boxes.size() << std::endl;
delete nanodet_plus;
}
int main(__unused int argc, __unused char *argv[])
{
test_nanodet();
test_nanodet_plus();
return 0;
}