'str' object has no attribute 'dtype'
在使用词云时,突然报这个错'str' object has no attribute 'dtype'
原因则是直接引用了图片文件,而没有通过imread()函数
1 | image_mask = 'alice_mask.png' |
正确写法为
1 | image_mask = imread('alice_mask.png') |
Comments