【发布时间】:2017-12-09 14:51:17
【问题描述】:
我正在 Ubuntu 操作系统上使用 opencv 开发 python 项目
import numpy as np
import cv2
img = cv2.imread("LillyBellea.png", 1)
img = cv2.imwrite("LillyBellea.jpeg", img)
cv2.imshow("original", img)
cv2.waitKey(0)
cv2.destroyAllWindows()
当我运行这个程序时出现错误
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
有人可以帮忙吗, 我已经关注this 的回答,但它对我不起作用
【问题讨论】:
标签: python linux opencv ubuntu