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

数据类型转换

程序员文章站 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
相关标签: python