python-opencv2可以正常imwrite却无法正常imshow的解决办法

今天在网上拷贝一份关于人脸检测变换的代码,然后他的默认功能imwrite保存的图片是没问题的,而当我想用imshow显示出来的时候却报错:

error: OpenCV(4.0.0) C:\projects\opencv-python\opencv\modules\highgui\src\window_w32.cpp:1230: error: (-215:Assertion failed) dst.data == (uchar*)dst_ptr in function 'cvShowImage'

解决----图像本质是一个矩阵,而且矩阵中的数字类型只能是uint8类型,在前面的处理中数字的类型发生过改变,所以需要修改回来:

img=img.astype(numpy.uint8)

这样,img就能够正常显示了

你可能感兴趣的:(图像处理)