yolov3,利用windows编译,使用opencv显示,后期可转移至QT中制作

参考https://blog.csdn.net/Augurlee/article/details/103530487

https://blog.csdn.net/stjuliet/article/details/87884976?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-task

 

 

1.先跑通yolo3的代码,windows_no——gpu版本

2.我编译的是cpu版本的,所以第一步是打开yolo_cpp_dll_no_gpu.sln

链接上opencv

Release版本是会生成yolo_cpp_dll.dll,

Debug版本是会生成yolo_cpp_dll_no_gpu.dll,

 

我选择  Release版本是会生成yolo_cpp_dll.dll,

 

3.按上述步骤, 完成编译生成dll
将调用所需的所有文件找出来放在一起:
          1、动态链接库(.\darknet-master\build\darknet\x64)
yolo_cpp_dll.lib
yolo_cpp_dll.dll
pthreadGC2.dll
pthreadVC2.dll
         2、OpenCV库
opencv_world340.dll
         3、YOLO模型文件(第一个文件在目录下,第二个文件在目录下,第三个文件需要自己下载,下载链接见前一篇文章)
coco.names .\darknet-master\build\darknet\x64\data
yolov3.cfg .\darknet-master\build\darknet\x64
yolov3.weights 下载链接: https://pjreddie.com/media/files/yolov3.weights
        4、头文件
yolo_v2_class.hpp .\darknet-master\include

 

将上述文件放入新件程序的 main.cpp 处

 

 

4.直接运行新建的程序

#include <iostream>
 
#ifdef _WIN32
#define OPENCV
#define GPU
#endif
 
#include "yolo_v2_class.hpp"	// imported functions from DLL
#include <opencv2/opencv.hpp>	// C++
#include "opencv2/highgui/highgui.hpp"  
 
#pragma comment(lib, "yolo_cpp_dll.lib")//引入链接库
 
void draw_boxes(cv::Mat mat_img, std::vector<bbox_t> result_vec, std::vector<std::string> obj_names,
	int current_det_fps = -1, int current_cap_fps = -1)
{
	int const colors[6][3] = { { 1,0,1 },{ 0,0,1 },{ 0,1,1 },{ 0,1,0 },{ 1,1,0 },{ 1,0,0 } };
	for (auto &i : result_vec) {
		cv::Scalar color = obj_id_to_color(i.obj_id);
		cv::rectangle(mat_img, cv::Rect(i.x, i.y, i.w, i.h), color, 2);
		if (obj_names.size() > i.obj_id) {
			std::string obj_name = obj_names[i.obj_id];
			if (i.track_id > 0) obj_name += " - " + std::to_string(i.track_id);
			cv::Size const text_size = getTextSize(obj_name, cv::FONT_HERSHEY_COMPLEX_SMALL, 1.2, 2, 0);
			int const max_width = (text_size.width > i.w + 2) ? text_size.width : (i.w + 2);
			cv::rectangle(mat_img, cv::Point2f(std::max((int)i.x - 1, 0), std::max((int)i.y - 30, 0)),
				cv::Point2f(std::min((int)i.x + max_width, mat_img.cols - 1), std::min((int)i.y, mat_img.rows - 1)),
				color, CV_FILLED, 8, 0);
			putText(mat_img, obj_name, cv::Point2f(i.x, i.y - 10), cv::FONT_HERSHEY_COMPLEX_SMALL, 1.2, cv::Scalar(0, 0, 0), 2);
		}
	}
}
 
 
std::vector<std::string> objects_names_from_file(std::string const filename) {
	std::ifstream file(filename);
	std::vector<std::string> file_lines;
	if (!file.is_open()) return file_lines;
	for (std::string line; getline(file, line);) file_lines.push_back(line);
	std::cout << "object names loaded \n";
	return file_lines;
}
 
int main()
{
	std::string  names_file = "coco.names";
	std::string  cfg_file = "yolov3.cfg";
	std::string  weights_file = "yolov3.weights";
	Detector detector(cfg_file, weights_file);//初始化检测器
	auto obj_names = objects_names_from_file(names_file);//获得分类对象名称
 
	cv::VideoCapture capture;
	capture.open("test.mp4");
//capture.open("0"); 打开摄像头测试//
	if (!capture.isOpened())
	{
		printf("文件打开失败");
	}
	//获取整个帧数  
	long totalFrameNumber = capture.get(CV_CAP_PROP_FRAME_COUNT);
	cv::Mat frame;
	for (size_t i = 0; i < totalFrameNumber; i++)
	{
		capture >> frame;
		std::vector<bbox_t> result_vec = detector.detect(frame);
		draw_boxes(frame, result_vec, obj_names);
		cv::imshow("window name1", frame);
		cv::waitKey(3);
	}
	return 0;
}

运行成功

 

需要先自己跑yolo3程序   自己会opencv程序的链接
 

不会的 先去查一下这方面的知识呀~

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值