欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python打印图像所有的像素值

程序员文章站 2022-06-02 20:08:54
...

采用np.set_printoptions()进行打印

img = cv2.imread('./test.jpg')
np.set_printoptions(threshold=sys.maxsize)
print(img)

错误:

原代码:

np.set_printoptions(threshold=np.nan)

报错:

ValueError: threshold must be non-NAN, try sys.maxsize for untruncated representation

解决:

np.set_printoptions(sys.maxsize)