我试图找到轮廓的质心但是在C ++(OpenCV 2.3.1)中实现示例代码时遇到了麻烦。任何人都可以帮助我吗?
答案 0 :(得分:15)
要查找轮廓的质心,可以使用矩量法。功能实现OpenCV。
查看这些时刻功能(central and spatial moments)。
下面的代码来自OpenCV 2.3 docs教程。 Full code here.
/// Find contours
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 ); }
同样check out this SOF,虽然它是在Python中,但它会很有用。它找到轮廓的所有参数。
答案 1 :(得分:5)
如果您有轮廓区域的蒙版,可以按如下方式找到质心位置:
cv::Point computeCentroid(const cv::Mat &mask) {
cv::Moments m = moments(mask, true);
cv::Point center(m.m10/m.m00, m.m01/m.m00);
return center;
}
当一个人拥有面具而不是轮廓时,这种方法非常有用。在这种情况下,上述方法在计算上比使用cv::findContours(...)
然后找到质量中心更有效。
答案 2 :(得分:1)
您还可以使用以下算法查找质心:
sumX = 0; sumY = 0;
size = array_points.size;
if(size > 0){
foreach(point in array_points){
sumX += point.x;
sumY += point.y;
}
centroid.x = sumX/size;
centroid.y = sumY/size;
}
或者在Opencv的boundingRect:
的帮助下//pseudo-code:
Rect bRect = Imgproc.boundingRect(array_points);
centroid.x = bRect.x + (bRect.width / 2);
centroid.y = bRect.y + (bRect.height / 2);
答案 3 :(得分:0)
给定轮廓点和Wikipedia的公式,可以有效地计算质心:
template <typename T>
cv::Point_<T> computeCentroid(const std::vector<cv::Point_<T> >& in) {
if (in.size() > 2) {
T doubleArea = 0;
cv::Point_<T> p(0,0);
cv::Point_<T> p0 = in->back();
for (const cv::Point_<T>& p1 : in) {//C++11
T a = p0.x * p1.y - p0.y * p1.x; //cross product, (signed) double area of triangle of vertices (origin,p0,p1)
p += (p0 + p1) * a;
doubleArea += a;
p0 = p1;
}
if (doubleArea != 0)
return p * (1 / (3 * doubleArea) ); //Operator / does not exist for cv::Point
}
///If we get here,
///All points lies on one line, you can compute a fallback value,
///e.g. the average of the input vertices
[...]
}
注意:
p
的类型和返回值调整为Point2f
或Point2d
,
并在退货声明中向float
或double
添加转换为分母。