我在 OpenCV 中有一个二维点的向量
std::vector<cv::Point2f> points;
我想计算 x 和 y 坐标的平均值points
。就像是:
cv::Point2f mean_point; //will contain mean values for x and y coordinates
mean_point = some_function(points);
这在 Matlab 中很简单。但我不确定我是否可以利用一些高级 OpenCV 函数来完成同样的任务。有什么建议么?