-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathYOLO.h
43 lines (38 loc) · 1016 Bytes
/
YOLO.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
#pragma once
#include <fstream>
#include <sstream>
#include <iostream>
#include <opencv2/dnn.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>
#include "det_pp.h"
#include "path.h"
using namespace cv;
using namespace dnn;
using namespace std;
class YOLO {
public:
YOLO(Net_config config);
void detect(Mat& frame);
void slot_detect_1280_720(Mat& frame, vector<parkingSpaceInPixel>& spaces);
//void slot_track(vector<SlotInfo> slots);
float anchor_yolov5n[3][3][2];
int OD_stride[3];
int slot_stride;
private:
float* anchors;
int num_stride;
int inpWidth;
int inpHeight;
vector<string> class_names;
int num_class;
float confThreshold;
float nmsThreshold;
float xthr;
float ythr;
float objThreshold;
const bool keep_ratio = true;
Net net;
void drawPred(float conf, int left, int top, int right, int bottom, Mat& frame, int classid);
Mat resize_image(Mat srcimg, int* newh, int* neww, int* top, int* left);
};