Answers for "How can I keep the pyqt GUI responsive when performing a cpu intensive task?"

0

How can I keep the pyqt GUI responsive when performing a cpu intensive task?

You can use threading to solve your problem.

You can put your image writing function inside a new thread and then that task will get independent of your UI part and hence it will not lag.

I have done it and let me know if you need any further help.
Posted by: Guest on October-15-2020

Code answers related to "How can I keep the pyqt GUI responsive when performing a cpu intensive task?"

Python Answers by Framework

Browse Popular Code Answers by Language