OpenCV:ValueError:源代码字符串不能包含空字节

时间:2018-10-09 14:28:03

标签: python-3.x opencv cv2

我正在使用Python 3中的cv2包加载彩色图像,然后使用item方法单独访问元素。

import cv2

img = cv2.imread('/Users/tcssig/Downloads/Test images/proc_images/grayCdr.png')

img[0,0,0]

然后它给了我以下错误:

ValueError: source code string cannot contain null bytes

如果我尝试打印图像,它将显示如下。

img

Out[52]: 
array([[[255, 255, 255],
        [127,  55,   1],
        [127,  55,   1],
        ...,
        [110,  49,   0],
        [113,  51,   5],
        [111,  51,   5]],

       [[127,  55,   1],
        [127,  55,   1],
        [127,  55,   1],
        ...,
        [112,  49,   0],
        [113,  51,   3],
        [111,  51,   5]],

       [[127,  56,   0],
        [127,  56,   0],
        [127,  56,   0],
        ...,
        [113,  50,   0],
        [113,  51,   3],
        [113,  51,   3]]

0 个答案:

没有答案