我正在使用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]]