c++ 中的 PyQt 自定义小部件
我可以用纯 C++ 编写自定义 Qt 小部件,编译它并在 PyQt 中使用吗?
我正在尝试将 ctypes-opencv 与 qt 一起使用,但我在使用 python 代码以 Qt 形式显示 opencv 图像时遇到性能问题。
Can I write custom Qt widget in pure C++, compile it and use in PyQt?
I'm trying to use the ctypes-opencv with qt and I have performance problems with python's code for displaying opencv's image in Qt form.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用
sip
库(由 PyQt 使用)为小部件编写一个 Python 包装器。有一个简单示例文档中的 Qt/C++ 小部件。You will have to write a Python wrapper for the widget, using the
sip
library (which is used by PyQt). There is a simple example for a Qt/C++ widget in the documentation.