求opencv行人检测正确率得代码

小生快跑 2016-03-10 04:58:02
在网上看到都是HOG行人检测的事例,但是没有最后计算出检测的正确率。
请老师能不能根据下面的代码,写出检测正确率。我是编程的菜鸟,不会编程。多谢各位高手了。不胜感激。


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

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

using namespace cv;
using namespace std;

// static void help()
// {
// printf(
// "\nDemonstrate the use of the HoG descriptor using\n"
// " HOGDescriptor::hog.setSVMDetector(HOGDescriptor::getDefaultPeopleDetector());\n"
// "Usage:\n"
// "./peopledetect (<image_filename> | <image_list>.txt)\n\n");
// }

int main(int argc, char** argv)
{
Mat img;
FILE* f = 0;
char _filename[1024];
//char *_filename="posListINRIA.txt";

//if( argc == 1 )
//{
// printf("Usage: peopledetect (<image_filename> | <image_list>.txt)\n");
// return 0;
//}
//img = imread(argv[1]);

//img = imread("negListINRIA.txt");

//if( img.data )
//{
// strcpy(_filename, argv[1]);
//}
//else
//{
// f = fopen(argv[1], "rt");
// if(!f)
// {
// fprintf( stderr, "ERROR: the specified file could not be loaded\n");
// return -1;
// }
//}

f = fopen("TestData.txt", "rt"); //这是我测试的图片路径文件

HOGDescriptor hog;
hog.setSVMDetector(HOGDescriptor::getDefaultPeopleDetector());
namedWindow("people detector", 1);

for(;;)
{
char* filename = _filename;
if(f)
{
if(!fgets(filename, (int)sizeof(_filename)-2, f)) //每次读取一行,即一张图片的路径
//destination,maxnumber,souce,返回读取的字符串,遇到换行或EOF结束
//最多能读取maxnumber-1个字符,因为默认会加上‘\0’,要给它预留位置
break;
//while(*filename && isspace(*filename))
// ++filename;
if(filename[0] == '#')
continue;
int l = (int)strlen(filename);
while(l > 0 && isspace(filename[l-1]))
--l;
filename[l] = '\0';
img = imread(filename); //每次循环都会读取一张图片
}
printf("%s:\n", filename);
if(!img.data)
continue;

fflush(stdout);//清除文件缓冲区。以写方式打开文件时,将缓冲区内容写入文件
vector<Rect> found, found_filtered;
double t = (double)getTickCount();
// 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);
/*
img – Source image.
found_locations – objects boundaries(x,y,width,height).
hit_threshold – Threshold for the distance between features and SVM classifying plane.
win_stride – Window stride. It must be a multiple of block stride.
padding – Mock parameter to keep the CPU interface compatibility. It must be (0,0). ????
scale0 – Coefficient of the detection window increase.
group_threshold – Coefficient to regulate the similarity threshold. When detected, some
objects can be covered by many rectangles. 0 means not to perform grouping. 原本能检测一个人,当设为4的时候居然没了
*/
t = (double)getTickCount() - t;
printf("tdetection time = %gms\n", t*1000./cv::getTickFrequency());
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);// tl:the top-left corner,br: the bottom-right corner
}
imshow("people detector", img);
int c = waitKey(5000) & 255;
if( c == 'q' || c == 'Q' || !f)
break;
}
if(f)
fclose(f);
return 0;
}
...全文
1398 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
赵4老师 2016-11-18
  • 打赏
  • 举报
回复
Tutorial: OpenCV haartraining (Rapid Object Detection With A Cascade of Boosted Classifiers Based on Haar-like Features) http://hzy5000.blog.163.com/blog/static/7459645200823115534937/
赵4老师 2016-11-18
  • 打赏
  • 举报
回复
不是。我觉得。
Andy_Daier 2016-11-17
  • 打赏
  • 举报
回复
引用 1 楼 zhao4zhong1 的回复:
啥叫正确?
同问,就是拿训练出来的分类器对测试集进行预测,这个准确率怎么计算,比如对一张图片检测,那么这个结果的准确率是图片中矩形框框出的人数 除以 总的矩形框数,是这样吗?如果是这样,那么具体代码是什么样呢?新手真心求教!!谢谢!
赵4老师 2016-03-11
  • 打赏
  • 举报
回复
啥叫正确?
小生快跑 2016-03-11
  • 打赏
  • 举报
回复
引用 1 楼 赵4老师的回复:
啥叫正确?
老师,您好。opencv样本检测到行人的几率。能不能不添加测试图片,运行代码照片训练样本的行人检测率。谢谢老师。

3,881

社区成员

发帖
与我相关
我的任务
社区描述
C/C++ 其它技术问题
社区管理员
  • 其它技术问题社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧