-
Notifications
You must be signed in to change notification settings - Fork 111
/
yolov3_main.cpp
69 lines (62 loc) · 2.48 KB
/
yolov3_main.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
58
59
60
61
62
63
64
65
66
67
68
69
// Created by luozhiwang ([email protected])
// Date: 2020/3/15
#include "yolov3.h"
void initInputParams(common::InputParams &inputParams){
inputParams.ImgH = 512;
inputParams.ImgW = 512;
inputParams.ImgC = 3;
inputParams.BatchSize = 1;
inputParams.HWC = true;
inputParams.IsPadding = true;
inputParams.InputTensorNames = std::vector<std::string>{"Placeholder/inputs_x:0"};
inputParams.OutputTensorNames = std::vector<std::string>{"pred_sbbox/decode:0", "pred_mbbox/decode:0", "pred_lbbox/decode:0"};
inputParams.pFunction = [](const unsigned char &x){return static_cast<float>(x) /255;};
}
void initTrtParams(common::TrtParams &trtParams){
trtParams.ExtraWorkSpace = 0;
trtParams.FP32 = true;
trtParams.FP16 = false;
trtParams.Int32 = false;
trtParams.Int8 = false;
trtParams.worker = 4;
trtParams.MaxBatch = 100;
trtParams.MinTimingIteration = 1;
trtParams.AvgTimingIteration = 2;
trtParams.CalibrationTablePath = "/work/tensorRT-7/data/yoloInt8.calibration";
trtParams.CalibrationImageDir = "/data/dataset/coco/images/train2017";
trtParams.OnnxPath = "/work/tensorRT-7/data/onnx/yolov3.onnx";
trtParams.SerializedPath = "/work/tensorRT-7/data/onnx/yolov3.serialized";
}
void initDetectParams(common::DetectParams &yoloParams){
yoloParams.Strides = std::vector<int> {8, 16, 32};
yoloParams.AnchorPerScale = 3;
yoloParams.NumClass = 80;
yoloParams.NMSThreshold = 0.45;
yoloParams.PostThreshold = 0.3;
}
int main(int args, char **argv){
// 46ms ===> 35ms worker=4
// 21.7fps ===> 28.5fps
common::InputParams inputParams;
common::TrtParams trtParams;
common::DetectParams yoloParams;
initInputParams(inputParams);
initTrtParams(trtParams);
initDetectParams(yoloParams);
Yolov3 yolo(inputParams, trtParams, yoloParams);
yolo.initSession(0);
cv::Mat image = cv::imread("/work/tensorRT-7/data/image/coco_1.jpg");
std::vector<common::Bbox> bboxes;
for(int i=0; i<25; ++i){
const auto start_t = std::chrono::high_resolution_clock::now();
bboxes = yolo.predOneImage(image);
const auto end_t = std::chrono::high_resolution_clock::now();
std::cout
<< "Wall clock time passed: "
<< std::chrono::duration<double, std::milli>(end_t-start_t).count()<<"ms"
<< std::endl;
}
image = renderBoundingBox(image, bboxes);
cv::imwrite("/work/tensorRT-7/data/image/render.jpg", image);
return 0;
}