AttributeError: module ‘numpy‘ has no attribute ‘bool‘

在做项目的时候遇到了这个问题,numpy没有这个属性

AttributeError: module ‘numpy’ has no attribute ‘bool’

解决方法一

于是我就开始了上网查找问题,我看网上大多都是说是版本的问题

AttributeError: module ‘numpy‘ has no attribute ‘bool‘

但是他们的解决方案都是需要联网,由于项目的原因机器不能联网于是我就尝试了根据控制台提示

将 源代码

AttributeError: module ‘numpy‘ has no attribute ‘bool‘

img1=np.asarray(img1).astype(np.bool)
img2=np.asarray(img2).astype(np.bool)

修改为:

 AttributeError: module ‘numpy‘ has no attribute ‘bool‘

img1=np.asarray(img1).astype(bool)
img2=np.asarray(img2).astype(np.bool_)

 bool或np.bool_都可

本文来自网络,不代表协通编程立场,如若转载,请注明出处:https://net2asp.com/d66cf09fd4.html