c++项目中使用YOLOv4模型简单案例

2024-06-12 08:18

本文主要是介绍c++项目中使用YOLOv4模型简单案例,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

主要是使用yolo_v2_class.hpp文件

1、hpp文件
#ifndef DEMO_HPP
#define DEMO_HPP
#ifndef OPENCV
#define OPENCV
#endif
#include<yolo_v2_class.hpp>
#include<darknet.h>
using namespace cv;
using namespace std;
class yoloDetector
{
public:yoloDetector(string cfgfile,string weightfile,float thresh = 0.2, bool use_mean = false,int gpu_id = 0);vector<map<string,float>> detect(Mat imag);~yoloDetector();private:vector<map<string,float>> bbox_to_vector(vector<bbox_t> booxs);vector<bbox_t> detectionObjetc;float prob;float thresh;bool use_mean;Detector* dector;};
yoloDetector::yoloDetector(string cfgfile,string weightfile,float thresh, bool use_mean,int gpu_id ):prob(prob),thresh(thresh),use_mean(use_mean)
{dector = new Detector(cfgfile,weightfile,gpu_id);
}vector<map<string,float>> yoloDetector::detect(Mat imag){vector<bbox_t> boxs= dector->detect(imag,thresh);if(boxs.size()>0){return bbox_to_vector(boxs);}}vector<map<string,float>> yoloDetector::bbox_to_vector(vector<bbox_t> booxs){vector<map<string,float>> im;for (vector<bbox_t>::iterator iter = booxs.begin(); iter != booxs.end(); iter++){if((*iter).prob < prob)continue;map<string, float> ma;ma["x"]=(*iter).x;ma["y"]=(*iter).y;ma["w"]=(*iter).w;ma["h"]=(*iter).h;ma["prob"]=(*iter).prob;ma["obj_id"]=(*iter).obj_id;ma["frames_counter"]=(*iter).frames_counter;ma["x_3d"]=(*iter).x_3d;ma["y_3d"]=(*iter).y_3d;ma["z_3d"]=(*iter).z_3d;im.push_back(ma);}return im;}yoloDetector::~yoloDetector(){delete(dector);}#endif // DEMO_H
2、main文件
#include<demo.hpp>
#include<iostream>Mat huatu(Mat img,vector<map<string,float>> boox,string classname[]){for(vector<map<string,float>>::iterator iter=boox.begin();iter != boox.end(); iter++){float x = (*iter).at("x");float y = (*iter).at("y");float w = (*iter).at("w");float h = (*iter).at("h");float prob = (*iter).at("prob");float obj_id = (*iter).at("obj_id");if(prob>0.8){Rect rect(x, y,w, h);cv::rectangle(img,rect, cv::Scalar(255, 0, 0), 1,LINE_8,0);string pr = to_string(prob);string labe=classname[(int)obj_id] + ' ' + pr;cv::putText(img,labe ,cv::Point(x, y - 13),cv::FONT_HERSHEY_SIMPLEX,0.5,cv::Scalar(0, 255, 0),2);}}//cv::imshow("MyWindow", img);//waitKey(0);return img;}int main(int argc, char const *argv[]){if(argc<5){cout<<"input cfg/weight/(igm/video/cam)/path "<<endl;// ../yolov4Dect ../cfg/yolov4-head-test.cfg ../backup/yolov4-head_best.weights  cam o}string  classname[]={"head"};string cfgfile = argv[1];string weightfile = argv[2];string type=argv[3];string path=argv[4];yoloDetector yd(cfgfile,weightfile);vector<map<string,float>> boox;if(type=="img"){Mat img = cv::imread(path);Mat img2;if(img.data==nullptr){cout<<"path:"<<path<<"error"<<endl;return -1;}else{boox = yd.detect(img);if(boox.size()>0){img2 = huatu(img,boox,classname);}imshow("demo",img2);waitKey(0);}}else if(type=="video"){VideoCapture capture;capture.open(path);double rate = capture.get(CV_CAP_PROP_FPS);int deply = cvRound(1000.000/rate);if(!capture.isOpened()){cout<<"no opend"<<endl;return -1;}while(1){Mat fram;capture>>fram;//resize(fram,img,Size(640.0,480.0));//imshow("demo",fram);if(fram.data!=nullptr){boox = yd.detect(fram);}cout<<boox.size()<<endl;Mat img;if(boox.size()>0){//Mat img2=fram.clone();img=huatu(fram,boox,classname);imshow("demo",img);}waitKey(deply);}}else if(type=="cam"){VideoCapture capture(0);double rate = capture.get(CV_CAP_PROP_FPS);int deply = cvRound(1000.000/rate);if(!capture.isOpened()){cout<<"no opend"<<endl;return -1;}while(1){Mat fram;capture>>fram;//resize(fram,img,Size(640.0,480.0));//imshow("demo",fram);if(fram.data!=nullptr){boox = yd.detect(fram);}cout<<boox.size()<<endl;Mat img;if(boox.size()>0){//Mat img2=fram.clone();img=huatu(fram,boox,classname);imshow("demo",img);}waitKey(deply);}}return 0;}
3、CMakeLists
cmake_minimum_required(VERSION 2.8.3)
project(yolov4Dect)
set(CMAKE_CXX_STANDARD 11)find_package(OpenCV)set(SOURCE_FILES demo3.cpp demo.hpp)add_executable(yolov4Dect ${SOURCE_FILES})include_directories(${OpenCV_INCLUDE_DIRS} "./" "/usr/include" "/headless/docker_mapping/YOLOv4/darknet/include/")link_directories("/headless/docker_mapping/YOLOv4/darknet/" "/usr/local/cuda-10.1/lib64")target_link_libraries(yolov4Dect  ${OpenCV_LIBS}"/headless/docker_mapping/YOLOv4/darknet/libdarknet.so")

简单案例写的比较粗糙,回头有时间在进一步完善

这篇关于c++项目中使用YOLOv4模型简单案例的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1053669

相关文章

springboot security使用jwt认证方式

《springbootsecurity使用jwt认证方式》:本文主要介绍springbootsecurity使用jwt认证方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录前言代码示例依赖定义mapper定义用户信息的实体beansecurity相关的类提供登录接口测试提供一

go中空接口的具体使用

《go中空接口的具体使用》空接口是一种特殊的接口类型,它不包含任何方法,本文主要介绍了go中空接口的具体使用,具有一定的参考价值,感兴趣的可以了解一下... 目录接口-空接口1. 什么是空接口?2. 如何使用空接口?第一,第二,第三,3. 空接口几个要注意的坑坑1:坑2:坑3:接口-空接口1. 什么是空接

springboot security快速使用示例详解

《springbootsecurity快速使用示例详解》:本文主要介绍springbootsecurity快速使用示例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝... 目录创www.chinasem.cn建spring boot项目生成脚手架配置依赖接口示例代码项目结构启用s

Python如何使用__slots__实现节省内存和性能优化

《Python如何使用__slots__实现节省内存和性能优化》你有想过,一个小小的__slots__能让你的Python类内存消耗直接减半吗,没错,今天咱们要聊的就是这个让人眼前一亮的技巧,感兴趣的... 目录背景:内存吃得满满的类__slots__:你的内存管理小助手举个大概的例子:看看效果如何?1.

java中使用POI生成Excel并导出过程

《java中使用POI生成Excel并导出过程》:本文主要介绍java中使用POI生成Excel并导出过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录需求说明及实现方式需求完成通用代码版本1版本2结果展示type参数为atype参数为b总结注:本文章中代码均为

springboot简单集成Security配置的教程

《springboot简单集成Security配置的教程》:本文主要介绍springboot简单集成Security配置的教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录集成Security安全框架引入依赖编写配置类WebSecurityConfig(自定义资源权限规则

Java的IO模型、Netty原理解析

《Java的IO模型、Netty原理解析》Java的I/O是以流的方式进行数据输入输出的,Java的类库涉及很多领域的IO内容:标准的输入输出,文件的操作、网络上的数据传输流、字符串流、对象流等,这篇... 目录1.什么是IO2.同步与异步、阻塞与非阻塞3.三种IO模型BIO(blocking I/O)NI

一文教你如何将maven项目转成web项目

《一文教你如何将maven项目转成web项目》在软件开发过程中,有时我们需要将一个普通的Maven项目转换为Web项目,以便能够部署到Web容器中运行,本文将详细介绍如何通过简单的步骤完成这一转换过程... 目录准备工作步骤一:修改​​pom.XML​​1.1 添加​​packaging​​标签1.2 添加

Spring Boot3虚拟线程的使用步骤详解

《SpringBoot3虚拟线程的使用步骤详解》虚拟线程是Java19中引入的一个新特性,旨在通过简化线程管理来提升应用程序的并发性能,:本文主要介绍SpringBoot3虚拟线程的使用步骤,... 目录问题根源分析解决方案验证验证实验实验1:未启用keep-alive实验2:启用keep-alive扩展建

tomcat多实例部署的项目实践

《tomcat多实例部署的项目实践》Tomcat多实例是指在一台设备上运行多个Tomcat服务,这些Tomcat相互独立,本文主要介绍了tomcat多实例部署的项目实践,具有一定的参考价值,感兴趣的可... 目录1.创建项目目录,测试文China编程件2js.创建实例的安装目录3.准备实例的配置文件4.编辑实例的