gpt4 book ai didi

c++ - OpenCV copyTo断言错误

转载 作者:太空宇宙 更新时间:2023-11-03 22:56:32 25 4
gpt4 key购买 nike

在将一个 Mat 复制到另一个 Mat 的感兴趣区域时,我遇到了一个我以前从未见过的错误。谷歌搜索并没有找到很多结果,而且似乎没有一个是相关的。

我附上了错误的屏幕截图以及 Mat 的一些属性。

enter image description here

这是代码:

    std::cout << "size height,width: " << size.height << ", " << size.width << std::endl;
cv::Mat tempResult(size.width, size.height, result.type());

std::cout << "tempResult cols,rows: " << tempResult.cols << ", " << tempResult.rows << std::endl;
std::cout << "tempResult type: " << tempResult.type() << std::endl;
std::cout << "tempResult channels: " << tempResult.channels() << std::endl;

std::cout << "result cols,rows: " << result.cols << ", " << result.rows << std::endl;
std::cout << "result type: " << result.type() << std::endl;
std::cout << "result channels: " << result.channels() << std::endl;

cv::Rect rect(0, 0, result.cols-1, result.rows-1);

std::cout << "rect size: " << rect.size() << std::endl;
result.copyTo(tempResult(rect));

最佳答案

cv::Mat::operator(cv::Rect roi) 方法提取与 cv::Rect roi 大小相同的子矩阵。但是您定义了一个缺少 1 行和 1 列的 cv::Rect 对象,因此 tempResult(rect) 返回的输出矩阵小于矩阵 resultcv::Mat::CopyTo 启动异常,因为要复制的输入小于输出参数。

解决这个问题:

cv::Rect rect(0, 0, result.cols, result.rows);

关于c++ - OpenCV copyTo断言错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29217722/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com