禁用 QT highgui 输出
我用QT编译了OpenCV。 我现在面临一个错误,我几乎可以肯定该错误与 QT 有关,我想使用老式的 highgui 输出它,而不使用 QT 界面。
这可能吗?
I have compiled OpenCV with QT.
I'm now facing an error which I'm almost certain is related to QT and I would like to output it using the old-fashioned highgui, without the QT interface.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
cvNamedWindow( ``myWindow'', ``CV_WINDOW_NORMAL`` );
将显示没有任何 Qt 装饰的窗口,如果你根本不想使用任何 Qt,你需要重建 openCV 而无需Qt
cvNamedWindow( ``myWindow'', ``CV_WINDOW_NORMAL`` );
will display the windows without any Qt decorations, if you don't want any Qt to be used at all you need to rebuild openCV without Qt
截至 2021 年和 OpenCV 版本 4x(可能更少),您可以禁用 Qt Decorations 关联标志,如下所示:
您可以检查所有标志 此处。
As of 2021 and OpenCV versions 4x (and maybe less), you can disable Qt Decorations associating flags like below:
You can check all flags here.