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) 相关标签: 爬坑日记 bug python 上一篇: python-opencv创建空白图 下一篇: 2020年25个令人震惊的网红营销统计数据 推荐阅读 python打印图像所有的像素值 python-修改图像的尺寸和RGB三个通道的像素值(opencv)