首页 文章

Opencv异常fillconvexppoly

提问于
浏览
1

我试图将代码从python移植到c . 我需要用黑色绘制图像(多边形)的一部分 .

在python中,我有点列表,然后我调用fillconvexpolygon来做到这一点 . 我在c中尝试过相同的但我得到了这个例外:

OpenCV Error: Assertion failed (points.checkVector(2, CV_32S) >= 0) in fillConvexPoly, file /home/user/template_matching/repositories/opencv/modules/core/src/drawing.cpp, line 2017
terminate called after throwing an instance of 'cv::Exception'
  what():  /home/user/template_matching/repositories/opencv/modules/core/src/drawing.cpp:2017: error: (-215) points.checkVector(2, CV_32S) >= 0 in function fillConvexPoly

我能够在图像上绘制线条,并且在用作多边形轮廓的点列表中有点:

drawMatches(img_object, TSMART_BANKNOTE[i].kp, img_orig, BankNote_t.kp,
            good, img_matches, Scalar::all(-1), Scalar::all(-1),
            vector<char>(), DrawMatchesFlags::NOT_DRAW_SINGLE_POINTS );
 line(img_matches, scene_corners[0] + Point2f(img_object.cols, 0), 
                       scene_corners[1] + Point2f(img_object.cols, 0), 
                                                  Scalar(0, 255, 0), 4);  //Left side

 line(img_matches, scene_corners[2] + Point2f(img_object.cols, 0),
                       scene_corners[3] + Point2f(img_object.cols, 0), 
                                                  Scalar(0, 255, 0), 4);  //right side

 line(img_matches, scene_corners[1] + Point2f(img_object.cols, 0), 
                       scene_corners[2] + Point2f(img_object.cols, 0),
                                                  Scalar(0, 255, 0), 4);    //Down line

 line(img_matches, scene_corners[3] + Point2f(img_object.cols, 0),
                       scene_corners[0] + Point2f(img_object.cols, 0),
                                                  Scalar(0, 255, 0), 4);       //Up line

    vector<Point2f> pt;
pt.push_back(Point2f(scene_corners[0].x + img_object.cols, 
                       scene_corners[1].y));

pt.push_back(Point2f(scene_corners[2].x + img_object.cols, 
                       scene_corners[3].y));

pt.push_back(Point2f(scene_corners[1].x + img_object.cols, 
                       scene_corners[2].y));

pt.push_back(Point2f(scene_corners[3].x + img_object.cols, 
                       scene_corners[0].y));
std::cout << "PT POINTS: " << pt.size() <<"\r\n";

    //fillConvexPoly(img_matches, pt, pt.size(), Scalar(1,1,1), 16, 0);

     fillConvexPoly(img_matches, pt, cv::Scalar(255), 16, 0);
    //-- Show detected matches
std::cout <<"H5\r\n"; 
imshow( "Good Matches & Object detection", img_matches);
    waitKey(0);

在文档中,我发现了一个fillconvexpoly函数,它接收向量的大小 . 我似乎不接受这一点 . 我使用的是opencv 2.4.6

1 回答

  • 1

    例外情况说它正在检查CV_32S类型(有符号整数),其中您的点是浮点类型 .

    替换你的

    std::vector<cv::Point2f> pt;
    

    std::vector<cv::Point2i> pt;
    

相关问题