调用opencv自带的行人检测 ,环境opencv3.3.0+vs2015

#include "opencv2/imgproc/imgproc.hpp"  
#include "opencv2/objdetect/objdetect.hpp"  
#include "opencv2/highgui/highgui.hpp"  

#include <iostream>  
#include <stdio.h>  
#include <string.h>  
#include <ctype.h>  


using namespace cv;
using namespace std;




int main()
{

Mat img;


vector<Rect> found, found_filtered;
string namepic = "timg.jpg";
img = imread(namepic);
if (!img.data)
{
printf("No data!--Exiting the program \n");
return -1;
}
namedWindow("people detector", 1);
//imshow("people detector",img);  


HOGDescriptor hog;//(cv::Size(64,64), cv::Size(16,16), cv::Size(8,8), cv::Size(8,8), 9);  
hog.setSVMDetector(HOGDescriptor::getDefaultPeopleDetector());

cout << namepic << endl;

fflush(stdout);    //刷新  


  // run the detector with default parameters. to get a higher hit-rate  
  // (and more false alarms, respectively), decrease the hitThreshold and  
  // groupThreshold (set groupThreshold to 0 to turn off the grouping completely).  
hog.detectMultiScale(img, found, 0, Size(8, 8), Size(32, 32), 1.05, 2);
size_t i, j;
for (i = 0; i < found.size(); i++)
{
Rect r = found[i];
for (j = 0; j < found.size(); j++)
if (j != i && (r & found[j]) == r)
break;
if (j == found.size())
found_filtered.push_back(r);
}
for (i = 0; i < found_filtered.size(); i++)
{
Rect r = found_filtered[i];
// the HOG detector returns slightly larger rectangles than the real objects.  
// so we slightly shrink the rectangles to get a nicer output.  
r.x += cvRound(r.width*0.1);
r.width = cvRound(r.width*0.8);
r.y += cvRound(r.height*0.07);
r.height = cvRound(r.height*0.8);
rectangle(img, r.tl(), r.br(), cv::Scalar(0, 255, 0), 3);
}
imshow("people detector", img);
waitKey(0);
return 0;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

工程小白

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值