C ++ OpenCV从点向量获取边界框

时间:2014-10-08 07:37:21

标签: c++ opencv

我有自己画的点数:

std::vector<CvPoint> shape1 = paintshape(0);

http://s29.postimg.org/brkfri6uv/box.jpg

现在我需要在这个形状周围找到一个边界框对象(点),

我在网上搜索了答案,但每个话题都在谈论 识别whol图像文件中某些对象的边缘,然后创建边界框。

在我的情况下它的不同,

谢谢!

1 个答案:

答案 0 :(得分:6)

获得积分的boundingRect

#include "opencv2/imgproc/imgproc.hpp"

// please use stuff from the cv:: namespace, not the outdated Cv*
std::vector<cv::Point> shape1 = paintshape(0); 
cv::Rect r = cv::boundingRect(shape1);