RDK X3(旭日X3派) qt.qpa.xcb: could not connect to display

当我们给RDK X3烧写Desktop版本镜像,写了一个带有imshow的OpenCV程序,使用ssh远程开发时运行这个程序,本以为我们的图片窗口会乖乖的展示在HDMI的显示器上,但是遇到了报错:

bash 复制代码
qt.qpa.xcb: could not connect to display 
qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "/usr/local/lib/python3.8/dist-packages/cv2/qt/plugins" even though it was found.
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
Available platform plugins are: xcb.
Aborted

这时候需要作如下设置:

step1:ssh登陆到X3

RDK X3系统镜像有两个用户:一个sunrise,一个root。

而桌面环境登录的用户是sunrise,所以ssh登录也登录到sunrise

step2:设置允许别的用户启动窗体程序

bash 复制代码
xhost +

step3:设置窗口程序要输出的显示器:

复制代码
export DISPLAY=:0.0

这时候我们再去ssh终端中运行一个带有imshow的OpenCV程序,就可以成功运行了,窗口会显示在xfce桌面上,可以通过VNC去看。

相关推荐
小小码农Come on3 分钟前
QT开发环境安装
开发语言·qt
云深处@6 分钟前
【C++】哈希表
开发语言·c++
weixin_452159559 分钟前
模板编译期条件分支
开发语言·c++·算法
guygg889 分钟前
傅立叶光学的Matlab实现方法
开发语言·matlab
码农六六12 分钟前
js函数柯里化
开发语言·前端·javascript
2501_9411481513 分钟前
C++ map / multimap 保姆级教程
java·开发语言·c++
ʚB҉L҉A҉C҉K҉.҉基҉德҉^҉大22 分钟前
C++中的策略模式进阶
开发语言·c++·算法
xb113228 分钟前
C#串口通信
开发语言·c#
小小码农Come on28 分钟前
QT内存管理
开发语言·qt
Zach_yuan35 分钟前
C++ Lambda 表达式从入门到进阶
开发语言·c++