QObject::moveToThread: Current thread (0x80ee280) is not the object's thread (0x8ad5910). Cannot move to target thread (0x80ee280)
时间: 2023-09-03 13:10:17 浏览: 432
引用\[1\]和\[2\]中提到的报错"QObject::moveToThread: Current thread is not the object's thread. Cannot move to target thread"通常是由于在多线程环境下,尝试将一个对象从一个线程移动到另一个线程时引发的错误。这个错误通常发生在使用Qt框架的应用程序中。
引用\[3\]提供了一个可能的解决方案,如果您正在使用Anaconda虚拟环境并且同时安装了pyqt和opencv-python,可能会导致两个PyQt版本之间的冲突。为了解决这个问题,您可以尝试以下解决方案之一:
1. 确保您的环境中只安装了一个PyQt版本。您可以使用conda或pip卸载其中一个版本,然后重新安装另一个版本。
2. 如果您需要同时使用pyqt和opencv-python,可以尝试创建一个新的虚拟环境,并在该环境中只安装一个版本的PyQt和opencv-python。
请注意,具体的解决方案可能因您的环境和应用程序的特定情况而有所不同。如果以上解决方案不起作用,您可能需要进一步调查和调试您的代码和环境设置,或者请参考相关的Qt和OpenCV文档和社区支持。
#### 引用[.reference_title]
- *1* [Ubuntu下OpenCV报错:QObject::moveToThread: Current thread (0x1b97af0) is not the object‘s thread 0x...](https://blog.csdn.net/weixin_46584887/article/details/122072486)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* *3* [QObject::moveToThread: Current thread(...) is not the object`s thread. Cannot move to target thread](https://blog.csdn.net/m0_59496782/article/details/122833159)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文