• 大小: 0.48M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: 其他
  • 标签: 其他  

资源简介


基于DPM行人车辆检测,算法实现基于opencv3扩展库,代码工程基于Qt5

资源截图

代码片段和文件信息

#include 
#include 
#include 
#include 
#include 

#include 
#include 

#include “testprocesstime.h“
#include “myvideowriter.h“

using namespace cv;
using namespace cv::dpm;
using namespace std;

void drawBoxes(Mat &frame vectorjectDetection> ds Scalar color)
{
    for (unsigned int i = 0; i < ds.size(); i++)
    {
        rectangle(frame ds[i].rect color 2);
    }
}

int main( int argc char** argv )
{
    string model_path = “E:/QtProject/data/DPM/car.xml“;
    string videoPath = “E:/QtProject/data/output2.avi“;

    if( model_path.empty() )
    {
        return -1;
    }

    cv::Ptr detector = DPMDetector::create(vector(1 model_path));
    VideoCapture capture(videoPath);
    TestProcessTime testTime;
    MyVideoWriter outputVideo;
    testTime.setProcessname(“DPM“);
    if ( !capture.i

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2836  2017-01-09 13:33  DPMDetector\DPMDetector.pro

     文件      18684  2017-01-20 14:32  DPMDetector\DPMDetector.pro.user

     文件       1967  2017-01-16 19:21  DPMDetector\main.cpp

     文件       1533  2016-12-28 18:43  DPMDetector\myvideowriter.cpp

     文件        775  2016-12-28 18:43  DPMDetector\myvideowriter.h

     文件        990  2017-01-06 09:33  DPMDetector\testprocesstime.cpp

     文件        530  2016-12-28 18:43  DPMDetector\testprocesstime.h

     文件     759514  2017-01-16 19:10  DPM\car.xml

     文件     271281  2015-12-17 09:11  DPM\inriaperson.xml

     文件     785891  2017-01-08 14:58  DPM\person.xml

     目录          0  2018-12-11 13:12  DPMDetector

     目录          0  2018-12-11 13:12  DPM

----------- ---------  ---------- -----  ----

              1844001                    12


评论

共有 条评论