作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 Logo 添加到更大的图像中,但出现以下错误。
OpenCV Error: Assertion failed (0 <= roi.x && 0 <= roi.width && roi.x + roi.width <= m.cols && 0 <= roi.y && 0 <= roi.height && roi.y + roi.height <= m.rows) in Mat, file C:\opencv246\modules\core\src\matrix.cpp, line 323
terminate called after throwing an instance of ’cv::Exception’
what(): C:\opencv246\modules\core\src\matrix.cpp:323: error: (-215) 0 <= roi.X && 0 <= roi.width && roi.x + roi.width <= m.cols && 0 <= roi.y && 0 <= roi.height && roi.y + roi.height <= m.rows in function Mat
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application’s support team for more information.
using namespace std;
using namespace cv;
int main()
{
Mat image = imread("C:\\castle.jpg",0);
Mat logo = imread("C:\\logo.jpg",0);
Mat imageROI = image(cv::Rect(385,270,logo.cols,logo.rows));
addWeighted(imageROI,1.0,logo,0.3,0.,imageROI);
namedWindow("output",CV_WINDOW_AUTOSIZE);
imshow("output",imageROI);
waitKey(0);
destroyAllWindows();
}
最佳答案
您的图像可能没有正确的尺寸。 image
的像素尺寸是多少?和 logo
?如果 image.cols < 385 + logo.cols
或 image.rows < 270 + logo.rows
您将无法在此位置将此 Logo 重叠在此图像上。
关于OpenCV 将 Logo 添加到感兴趣的区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21021462/
我正在尝试检索用户兴趣列表。所以我正在调用 graph api 来检索书籍、音乐等内容。似乎“喜欢”下的所有内容也包括书籍、音乐等下列出的所有内容。他们有任何异常(exception)吗,或者我可以调
这是一道代码组织题。我有将渐变背景放在 View 上的代码。我想在多个 View 上使用相同的代码 - 因此,我想将代码放在一个函数中,并在配置相关 View 时调用它。 我的问题是,放置这样一个函数
我是一名优秀的程序员,十分优秀!