当我尝试执行plt.show或opencv.imshow时,我只会收到此错误
_RegisterApplication(), FAILED TO REGISTER PROCESS WITH CPS/CoreGraphics in WindowServer, err=-50......
0x0000000108bdd156 Py_Main + 3734
28 python 0x0000000108a0d469 main + 313
29 libdyld.dylib 0x00007fff5e228ed9 start + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
Abort trap: 6
可用here中的完整异常 我试过重新安装Python,opencv和matplotlib。 我目前正在使用Mac OS 10.14.3 我已经尝试了Python 3.6.5和3.7.2 有人可以帮我吗?
编辑:这是不起作用的代码的基本示例:
import numpy as np
import cv2
img = numpy.random.rand(500,500)
cv2.imshow('window',img*255)
cv2.waitKey(0)