代码拉取完成,页面将自动刷新
#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
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。