数据类型转换
程序员文章站
2024-03-26 11:37:23
...
uint8数据转float64
from skimage import img_as_float
img1 = img_as_float(img)
uint8数据转float32
img1 = img.astype(np.float32))/255.0
上一篇: join()、split()
下一篇: python——函数的基本概念