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

资源简介


opencv中自带peopledetect代码有注释,关键的地方已详细注释,有问题可以一起讨论

资源截图

代码片段和文件信息

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

#include 
#include 
#include 

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 ( | .txt)\n\n“);
// }

int main(int argc char** argv)
{///////以下是载入一幅图像
    Mat img;//mat是opencv中自带的类,它定义了一个变量img至于Mat详细信息?????
    FILE* f = 0;//FILE是在stdio.h定义的保存文件流信息的一个结构体类型它本身是类型,使用完后需要free以免内存泄露
    char _filename[1024];

    
    img = imread(“E:\\pos\\5.png“);//读入一个图像,imread是opencv中的函数还是VS里的?

    if( img.data )
    {
        strcpy(_filename “E:\\pos\\5.png“);//////////////
    }
    else
    {
        f = fopen(“E:\\pos\\5.png“ 

评论

共有 条评论