基于opencv RotatedRect教程无法得到相同的图像结果
Posted
技术标签:
【中文标题】基于opencv RotatedRect教程无法得到相同的图像结果【英文标题】:Can't get the same image result based on opencv RotatedRect tutorial 【发布时间】:2016-04-23 20:52:43 【问题描述】:我使用的是 Ubuntu14.04 LTS 和 opencv 3.0,我按照链接中的以下代码进行操作。在控制台中,我得到了可用的 init opengl。但是,我得到的图像与以下链接中的图像完全不同。谁能帮我解决这个问题?谢谢。 http://docs.opencv.org/2.4/modules/core/doc/basic_structures.html#RotatedRect,
Mat image(200, 200, CV_8UC3, Scalar(0));
RotatedRect rRect = RotatedRect(Point2f(100,100), Size2f(100,50), 30);
Point2f vertices[4];
rRect.points(vertices);
for (int i = 0; i < 4; i++)
line(image, vertices[i], vertices[(i+1)%4], Scalar(0,255,0));
Rect brect = rRect.boundingRect();
rectangle(image, brect, Scalar(255,0,0));
imshow("rectangles", image);
waitKey(0);
My result
【问题讨论】:
【参考方案1】:我基于http://rodrigoberriel.com/2014/10/installing-opencv-3-0-0-on-ubuntu-14-04/重建了opencv3.0,然后得到了和教程一样的结果。它现在对我有用。
【讨论】:
以上是关于基于opencv RotatedRect教程无法得到相同的图像结果的主要内容,如果未能解决你的问题,请参考以下文章