1 Star 0 Fork 0

NJUPT-B523/Intelligent Traffic Violation Detection

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
object_detection.h 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
江斌 提交于 2021-08-22 15:41 . YDS 2019
#ifndef OBJECT_DETECTION_H
#define OBJECT_DETECTION_H
/*********************************
* 目标检测类,定义了接受检测结果
* 的容器方便结果数据传输
* @EVLIS-W
* date:2019/9/23
* *******************************/
#include <unistd.h>
#include <iostream>
#include <iomanip>
#include <string>
#include <vector>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "tengine_c_api.h"
#include <sys/time.h>
#include "cpu_device.h"
class Object_detection
{
public:
struct Box
{
float x0;
float y0;
float x1;
float y1;
int class_idx;
float score;
};
std::vector<float> detection;//目标及其坐标信息
Object_detection();
//输入图片,以及ssd模型对应的格式大小
void get_input_data_ssd(cv::Mat img, float* input_data, int img_h, int img_w);
//输出结果
void post_process_ssd(cv::Mat img, float threshold, float* outdata, int num);
};
#endif // OBJECT_DETECTION_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/njupt-b523/intelligent-traffic-violation-detection.git
git@gitee.com:njupt-b523/intelligent-traffic-violation-detection.git
njupt-b523
intelligent-traffic-violation-detection
Intelligent Traffic Violation Detection
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385