标签: arrays matplotlib types imread
这是我的代码:
import matplotlib.pyplot as plt img = plt.imread(<some image path>)
img现在是一个dtype = unit8的数组。如何将其转换为dtype = float32的数组?
img
dtype = unit8
dtype = float32
谢谢!
答案 0 :(得分:1)
使用ndarray.astype:
ndarray.astype
img.astype('float32')