为什么 InputOutputArray 在构造函数中采用 const Mat& 引用?

Why does InputOutputArray take a const Mat& reference in the constructor?

InputOutputArray 的构造函数在构造函数中采用 const cv::Mat&,这意味着编译时没有任何警告或错误。

为什么 InputOutputArray 需要一个 const Mat 引用。我理解为什么 InputArray 需要一个 const 引用,但是 OutputArray 真的不应该

void this_shouldnt_compile(const cv::Mat& mat) { 
    // const, so the header should not be modifiable
    // but the data is
    putText(mat, "some text", cvPoint(0,10), 
               FONT_HERSHEY_COMPLEX_SMALL, 0.8, 
               cvScalar({0,255,0}), 1, CV_AA);
}

所以 cv::_InputOutputArray::_InputOutputArray (const Mat & m) 的构造函数确实 exists

通过查看 https://github.com/opencv/opencv/issues/7298 似乎

  1. "Access "底层数据的“锁”在编译时和运行时都不可用。开发人员有责任控制它“

  2. "...可能没有真正的解决方案(即使使用 c++17)"

  3. "Issues such as this are well known in C++, and are not unique to OpenCV."