-
Notifications
You must be signed in to change notification settings - Fork 192
/
test_detector.cpp
44 lines (29 loc) · 1.06 KB
/
test_detector.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
/*!
@Description : https://github.com/shaoshengsong/
@Author : shaoshengsong
@Date : 2022-09-23 02:52:22
*/
#include <fstream>
#include <sstream>
#include <opencv2/imgproc.hpp>
#include <opencv2/opencv.hpp>
#include <opencv2/dnn.hpp>
#include "YOLOv5Detector.h"
#include "dataType.h"
int main(int argc, char *argv[])
{
std::shared_ptr<YOLOv5Detector> detector(new YOLOv5Detector());
detector->init(k_detect_model_path);
std::vector<detect_result> results;
cv::Mat frame = cv::imread("1.jpg");
//Second/Millisecond/Microsecond 秒s/毫秒ms/微秒us
auto start = std::chrono::system_clock::now();
detector->detect(frame, results);
auto end = std::chrono::system_clock::now();
auto detect_time =std::chrono::duration_cast<std::chrono::milliseconds>(end - start).count();//ms
detector->draw_frame(frame, results);
cv::imshow("YOLOv5-6.x", frame);
std::string output_file = cv::format("out%d.jpg", 1);
cv::imwrite(output_file, frame);
results.clear();
}