【Yolov5】目标检测 opencv调用onnx模型 c++部署 自用

环境:opencv4.7.0 

cppInfer.cpp

#include <fstream>
#include <opencv2/core.hpp>
#include <opencv2/opencv.hpp>
#include <opencv2/dnn.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>
#include "Cppinfer.h"

using namespace std;
using namespace cv;
using namespace dnn;

int endsWith(string s, string sub) {
	return s.rfind(sub) == (s.length() - sub.length()) ? 1 : 0;
}
const float anchors_640[3][6] = { {10.0,  13.0, 16.0,  30.0,  33.0,  23.0},
				  {30.0,  61.0, 62.0,  45.0,  59.0,  119.0},
				  {116.0, 90.0, 156.0, 198.0, 373.0, 326.0} };
const float anchors_1280[4][6] = { {19, 27, 44, 40, 38, 94},
								   {96, 68, 86, 152, 180, 137},
								   {140, 301, 303, 264, 238, 542},
				   {436, 615, 739, 380, 925, 792} };

YOLO::YOLO(Net_config config)
{
	this->confThreshold = config.confThreshold;
	this->nmsThreshold = config.nmsThreshold;
	this->objThreshold = config.objThreshold;

	this->net = readNetFromONNX(config.modelpath);
	ifstream ifs("");
	string line;
	while (getline(ifs, line)) this->class_names.push_back(line);
	this->num_class = class_names.size();

	anchors = (float*)anchors_640;
	this->num_stride = 3;
	this->inpHeight = 640;
	this->inpWidth = 640;

}

Mat YOLO::resize_image(Mat srcimg, int* newh, int* neww, int* top, int* left)
{
	int srch = srcimg.rows, srcw = srcimg.cols;
	*newh = this->inpHeight;
	*neww = this->inpWidth;
	Mat dstimg;
	if (this->keep_ratio && srch != srcw) {
		float hw_scale = (float)srch / srcw;
		if (hw_scale > 1) {
			*newh = this->inpHeight;
			*neww = int(this->inpWidth / hw_scale);
			resize(srcimg, dstimg, Size(*neww, *newh), INTER_AREA);
			*left = int((this->inpWidth - *neww) * 0.5);
			copyMakeBorder(dstimg, dstimg, 0, 0, *left, this->inpWidth - *neww - *left, BORDER_CONSTANT, cv::Scalar(114, 114, 114));
		}
		else {
			*newh = (int)this->inpHeight * hw_scale;
			*neww = this->inpWidth;
			resize(srcimg, dstimg, Size(*neww, *newh), INTER_AREA);
			*top = (int)(this->inpHeight - *newh) * 0.5;
			copyMakeBorder(dstimg, dstimg, *top, this->inpHeight - *newh - *top, 0, 0, BORDER_CONSTANT, cv::Scalar(114, 114, 114));
		}
	}
	else {
		resize(srcimg, dstimg, Size(*neww, *newh), INTER_AREA);
	}
	return dstimg;
}

std::vector<BboxInfo_yolo>  YOLO::detect(Mat& frame)
{
	int newh = 0, neww = 0, padh = 0, padw = 0;
	Mat dstimg = this->resize_image(frame, &newh, &neww, &padh, &padw);
	Mat blob = blobFromImage(dstimg, 1 / 255.0, Size(), Scalar(0, 0, 0), true, false);
	this->net.setInput(blob);
	vector<Mat> outs;
	this->net.forward(outs, this->net.getUnconnectedOutLayersNames());

	int num_proposal = outs[0].size[1];
	int nout = outs[0].size[2];
	if (outs[0].dims > 2)
	{
		outs[0] = outs[0].reshape(0, num_proposal);
	}
	// generate proposals
	vector<float> confidences;
	vector<Rect> boxes;
	vector<int> classIds;
	float ratioh = (float)frame.rows / newh, ratiow = (float)frame.cols / neww;
	int n = 0, q = 0, i = 0, j = 0, row_ind = 0; ///xmin,ymin,xamx,ymax,box_score,class_score
	float* pdata = (float*)outs[0].data;
	for (n = 0; n < this->num_stride; n++)   ///特征图尺度
	{
		const float stride = pow(2, n + 3);
		int num_grid_x = (int)ceil((this->inpWidth / stride));
		int num_grid_y = (int)ceil((this->inpHeight / stride));
		for (q = 0; q < 3; q++)    ///anchor
		{
			const float anchor_w = this->anchors[n * 6 + q * 2];
			const float anchor_h = this->anchors[n * 6 + q * 2 + 1];
			for (i = 0; i < num_grid_y; i++)
			{
				for (j = 0; j < num_grid_x; j++)
				{
					float box_score = pdata[4];
					if (box_score > this->objThreshold)
					{
						Mat scores = outs[0].row(row_ind).colRange(5, nout);
						Point classIdPoint;
						double max_class_socre;
						// Get the value and location of the maximum score
						minMaxLoc(scores, 0, &max_class_socre, 0, &classIdPoint);
						max_class_socre *= box_score;
						if (max_class_socre > this->confThreshold)
						{
							const int class_idx = classIdPoint.x;
							float cx = pdata[0];  ///cx
							float cy = pdata[1];   ///cy
							float w = pdata[2];   ///w
							float h = pdata[3];  ///h

							int left = int((cx - padw - 0.5 * w) * ratiow);
							int top = int((cy - padh - 0.5 * h) * ratioh);

							confidences.push_back((float)max_class_socre);
							boxes.push_back(Rect(left, top, (int)(w * ratiow), (int)(h * ratioh)));
							classIds.push_back(class_idx);
						}
					}
					row_ind++;
					pdata += nout;
				}
			}
		}
	}

	// Perform non maximum suppression to eliminate redundant overlapping boxes with
	// lower confidences
	vector<int> indices;
	std::vector<cv::Point> coordinates;

	dnn::NMSBoxes(boxes, confidences, this->confThreshold, this->nmsThreshold, indices);
	std::vector<BboxInfo_yolo> coord;
	for (size_t i = 0; i < indices.size(); ++i)
	{

		int idx = indices[i];

		Rect box = boxes[idx];

		int centerx = box.x + box.width / 2;
		int centery = box.y + box.height / 2;
		BboxInfo_yolo pt;
		pt.x = centerx;
		pt.y = centery;
		pt.w = box.width;
		pt.h = box.height;
		pt.label = classIds[idx];

		coord.push_back(pt);
		/*this->drawPred(confidences[idx], box.x, box.y,
			box.x + box.width, box.y + box.height, frame, classIds[idx]);*/
	}

	return coord;
}
std::vector<BboxInfo> detectDfs(YOLO yolo_model, Mat copiedImage)
{
	std::vector<BboxInfo_yolo> coordinates = yolo_model.detect(copiedImage);
	std::vector<BboxInfo> bboxContainer;
	for (size_t i = 0; i < coordinates.size(); ++i)
	{
		Coord coord;
		coord.x = coordinates[i].x;
		coord.y = coordinates[i].y;
		coord.w = coordinates[i].w;
		coord.h = coordinates[i].h;
		coord.label = coordinates[i].label;

		//std::cout << "Coordinate #" << i << ": (" << coord.x << ", " << coord.y << ")" << ": (" << coord.w << ", " << coord.h << ")  label:" << coord.label << std::endl;

		string text;
		switch (coord.label) {
		case 0:
			text = "white";
			break;
		}
		BboxInfo bbox;
		bbox.x = coord.x - coord.w / 2;
		bbox.y = coord.y - coord.h / 2;
		bbox.w = coord.w;
		bbox.h = coord.h;
		bbox.type = text;
		bboxContainer.push_back(bbox);

		//cout << "end------" << X << endl;
	}

	return bboxContainer;
}

cppinfer.h

#pragma once
#include <opencv2/opencv.hpp>
#include <opencv2/dnn.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>
#include <iostream>

using namespace std;
using namespace cv;
using namespace dnn;

struct Coord {
	int label;
	int x;
	int y;
	int w;
	int h;
};
struct BboxInfo_yolo {
	int label;
	int x;
	int y;
	int w;
	int h;
};
struct Net_config
{
	float confThreshold; // Confidence threshold
	float nmsThreshold;  // Non-maximum suppression threshold
	float objThreshold;  //Object Confidence threshold
	string modelpath;
};
struct BboxInfo {
	std::string type;
	int x;
	int y;
	int w;
	int h;
};
class YOLO
{
public:
	YOLO(Net_config config);
	std::vector<BboxInfo_yolo> detect(Mat& frame);
private:
	float* anchors;
	int num_stride;
	int inpWidth;
	int inpHeight;
	vector<string> class_names;
	int num_class;

	float confThreshold;
	float nmsThreshold;
	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);
};
std::vector<BboxInfo> detectDfs(YOLO yolo_model, Mat Image);

main.cpp

#include <opencv2/opencv.hpp>
#include <iostream>
#include "CppInfer.h"

using namespace cv;
using namespace std;

Net_config yolo_nets = { 0.4, 0.4, 0.4, "model//best.onnx" };
YOLO yolo_model(yolo_nets);

int main()
{
	Mat IMG = imread("images//4.bmp");
	vector<BboxInfo> bbox_info = detectDfs(yolo_model, IMG);
    for (int i = 0; i < bbox_info.size(); i++)
    {
        cv::putText(IMG, bbox_info[i].type, Point2f(bbox_info[i].x, bbox_info[i].y), cv::FONT_HERSHEY_SIMPLEX, 0.7, Scalar(255, 0, 0), 1);
        cv::rectangle(IMG, cv::Rect(bbox_info[i].x, bbox_info[i].y, bbox_info[i].w, bbox_info[i].h), cv::Scalar(255, 0, 0), 2);
    }
    imshow("image", IMG);
    waitKey();
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值