Ubuntu下OpenCV报错:QObject::moveToThread: Current thread (0x1b97af0) is not the object‘s thread 0x290d.

Posted Z.Q.Fengᯤ⁵ᴳ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu下OpenCV报错:QObject::moveToThread: Current thread (0x1b97af0) is not the object‘s thread 0x290d.相关的知识,希望对你有一定的参考价值。


项目场景:

之前的系统版本是 Python3.8 版本,在更新到 Python3.9 版本后,之前运行的好好的代码却运行不了了,下载好了相关的库后,仍出现相关报错。


问题描述:

报错如下:

QObject::moveToThread: Current thread (0x1b97af0) is not the object's thread (0x290d650).
Cannot move to target thread (0x1b97af0)

原因分析:

网上很多说是 OpenCV 版本太高,个人觉得是 pip 安装的 OpenCV 使用的插件与 Ubuntu Qt 平台兼容问题,由于 OpenCV 是用 pip 装的,所以换个方式安装。


解决方案:

打开终端,先卸载原来的 OpenCV

pip uninstall opencv-python

使用如下命令重新安装 OpenCV

sudo apt-get install libopencv-dev
sudo apt-get install python3-opencv

问题解决。

以上是关于Ubuntu下OpenCV报错:QObject::moveToThread: Current thread (0x1b97af0) is not the object‘s thread 0x290d.的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu下opencv使用cvNamedWindow()和cvShowImage()出错的解决方法

Ubuntu12.04安装OpenCV报错及解决

ubuntu14.04安装opencv2.4.13报错 -fPIC

如何修复python中opencv中的错误“QObject::moveToThread:”?

ubuntu 14.04 编译opencv-3.4.2 报错: /usr/bin/ld: /usr/local/lib/libavformat.a(allformats.o): relocation

vs cmake opencv 远程 ubuntu 开发时:vs代码出现紫色波浪线且报错怎么办?