我想从点向量中找到最小值和最大值。向量由 x 和 y 元素类型组成。我想要 x 的最小值和最大值以及 y 的最小值。我的向量定义为:
std::vector<cv::Point> location;
findNOZeroInMat(angles,location);
//I tried to use but it gives an error
minMaxLoc(location.cols(0), &minVal_x, &maxVal_x);
minMaxLoc(location.cols(1), &minVal_y, &maxVal_y);
我也尝试了 location.x ,但它没有用。如何分别获得 x 和 y 的最小值和最大值?