使用函数 findContours 和 approxPolyDP 来查找图像元素的轮廓。使用这些点,我使用 drawContours 函数在新图像中绘制多边形。我想使用 drawContours 函数生成的所有点来获取图形的质心和主轴,有没有办法做到这一点?
问问题
395 次
1 回答
0
您不必将轮廓绘制到另一个图像。只需遍历它们,计算它们的力矩,然后计算质心(质心),每个力矩的主轴角。
代码(未测试):
using namespace cv;
using namespace std;
[...]
// Get contours
vector<vector<Point> > contours;
vector<Vec4i> hierarchy;
findContours( canny_output, contours, hierarchy, CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE, Point(0, 0) );
// Get the moments
vector<Moments> mu(contours.size() );
for( int i = 0; i < contours.size(); i++ ) {
mu[i] = moments( contours[i], false );
}
// Get the mass centers
vector<Point2f> mc( contours.size() );
for( int i = 0; i < contours.size(); i++ ) {
mc[i] = Point2f( mu[i].m10/mu[i].m00 , mu[i].m01/mu[i].m00 );
}
// Get the angle of the main axis
vector<double> ama( contours.size() );
for( int i = 0; i < contours.size(); i++ ) {
ama[i] = 0.5*atan2((2*mu[i].mu11),(mu[i].mu20-mu[i].mu02)); //need to be 2 arguments
}
希望有帮助!有关更多信息,请查看以下链接:
于 2012-09-18T07:59:53.490 回答