有谁知道 Opencv 是否提供了一个函数来检查 cv::Point 是否在 cv::Mat 内?
基本上我在做:
int x = (current.x - offset);
int y = current.y;
if (x >= 0 && y >= 0 && x < mat.cols && y < mat.rows) && ((int)mat.at<uchar>(y, x) == 0)){
return cv::Point(x, y);
}
}
我想知道是否有更快的东西?或者如果这样做不好?