错误:使用未声明的标识符'groupRectangles'

时间:2015-11-17 12:55:40

标签: c++ opencv

我正在尝试在opencv中对多个矩形进行分组。这就是我正在做的事情

void groups_draw(Mat &src, vector<Rect> &groups)
{

    vector<Rect> rects;
    for (int i=(int)groups.size()-1; i>=0; i--)
     {
        rects.push_back(groups.at(i));
    }
    groupRectangles(rects, 1, 0.2);
}

但是我收到以下错误:

错误:使用未声明的标识符'groupRectangles'

我文件中的标题是:

#include "opencv2/core/core.hpp"
#include  "opencv2/text.hpp"
#include  "opencv2/highgui.hpp"
#include  "opencv2/imgproc.hpp"

#include  <vector>
#include  <iostream>
#include  <iomanip>

using namespace std;
using namespace cv;
using namespace cv::text;

1 个答案:

答案 0 :(得分:0)

函数groupRectanglesopencv2/objdetect/objdetect.hpp中声明。

但是,您可以使用包含所有 opencv2/opencv.hpp