python如何可视化服务器上的图片

2020-04-22  本文已影响0人  zju_dream

服务器系统:Ubuntu

1. 准备工作:

一般这两个环境已经配置好了,可以直接跳过。

2. 服务器配置

sudo vi /etc/ssh/sshd_config

如何使用vi操作文档请自行上网查询

AllowAgentForwarding yes
#AllowTcpForwarding yes
#GatewayPorts no
X11Forwarding yes
X11DisplayOffset 10
X11UseLocalhost no
#PermitTTY yes
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes

X11Forwarding为yes, 并删掉一些参数前的#以取消注释。
保存修改后,在命令行运行 sudo service ssh restart

3. 客户端

客户端ssh -X username@host_IP 用以连接服务器.

4.测试

之后就可以在服务器上使用python进行测试

import cv2
img = cv2.imread('demo.jpeg')
cv2.imshow('img', img)
cv2.waitKey()

如果出现图片说明成功了。


image.png

Reference
https://blog.csdn.net/u014303046/article/details/78752909

上一篇下一篇

猜你喜欢

热点阅读