将 opencv 连接到 qtcreator
我有 VC++ 和opencv 代码,我想使用 qtcreator 为其设计 GUI。
首先,我将库包含到项目中,并且它运行时没有任何错误。
现在,这之后我应该做什么?
如何将代码添加到项目的main.cpp文件中?
我应该将每个 opencv 代码更改为 Q... 就像 IpImage 更改为 QImage 吗?
I have VC++ & opencv code and I want to design GUI to it using qtcreator.
First of all, I included the libraries to the project and it ran without any errors.
Now, what should I do after this?
How can I add the code into main.cpp file in the project?
should I change every opencv code to Q... like IpImage to QImage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
安装 VS-addin 它将把 .pro 文件挂接到 gui自动编辑器
Install the VS-addin it will hook the.pro file to a gui editor automatically
关于将OpenCV连接到Qt GUI类,这里是一个示例代码 QtOpenCV 1 .它获取内容 ipmage ,IIRC 转换为 rgb32 并在 PaintEvent(QPaintEvent*) 中将其绘制在 QWidget 上;
About connecting OpenCV to Qt GUI classes , here is an example code QtOpenCV 1 . It takes content ipmage ,IIRC converts into rgb32 and paints it over a QWidget in paintEvent(QPaintEvent*);