程序调试过程

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/huoxingrenhdh/article/details/85208525

一、报错处理:

1.TypeError: slice indices must be integers or None or have an index method
参考:https://blog.csdn.net/c20081052/article/details/80576035
加int()强制转换为整型

2.ValueError: On entry to DLASCL parameter number 4 had an illegal value
还是变成整数就可以了

二、程序解读

1.imshow与show的区别?
plt.imshow()函数负责对图像进行处理,并显示其格式,有处理图像格式的过程
plt.show()则是将plt.imshow()处理后的函数显示出来,很简单的显示

2.RMS:均方根值,RMSE:均方根误差,MSE:标准差
https://blog.csdn.net/piaoxuezhong/article/details/68942468

猜你喜欢

转载自blog.csdn.net/huoxingrenhdh/article/details/85208525