欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决SystemError: new style getargs format but argument is not a tuple

程序员文章站 2022-04-04 11:13:39
...

SystemError: new style getargs format but argument is not a tuple

想给图片添加灰度值,莫名其妙出现这个解决SystemError: new style getargs format but argument is not a tuple
这个提示的意思就是说,putpixel()参数不是元组。我心想我这个需要数据格式也不是元组啊,不过既然提示这个是新格式的数据,那我就看它是什么类型的数据

print(type(256/(label[i][j]+1)))
<class 'numpy.float64'>

原来label是我前面用numpy构造的一个新数组,得到数据类型也就不是int
我就把前面强转成int类型,就ok咯

相关标签: 那些年踩过的坑