[Bug集合]only length-1 arrays can be converted to Python scalars

这出现在我写了如下语句时:

imagess = float(np.array(image)[:,:,0])

想直接把整个数组浮点化,然而不行。

imagess = np.array(image)[:,:,0]
images=imagess.astype(float)

老实点,这么写吧。如果对你有用点个赞呗。

你可能感兴趣的:(Bug集合)