File "D:\py_works\test.py", line 12, in convertPNG uint16_img -= uint16_img.min() AttributeError: 'NoneType' object has no attribute 'min'
时间: 2023-05-20 14:01:46 浏览: 181
mnist_uint8.zip_CNN图像处理_MNIST_MNIST CNN_mnist_uint8.mat_卷积神经
5星 · 资源好评率100%
这个错误提示表明在 test.py 文件的第 12 行中,convertPNG 函数中的 uint16_img 对象是 NoneType 类型,因此无法调用 min() 方法。建议检查代码中是否有未赋值的变量或者是否有错误的函数调用。
阅读全文