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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You will have to write a Python wrapper for the widget, using the
siplibrary (which is used by PyQt). There is a simple example for a Qt/C++ widget in the documentation.