Python 归一化图片数据


x_data = img.astype('f')
x_data /= 255
x_data -= 0.5
x_data = x_data.transpose(2, 0, 1)

 

 

 

你可能感兴趣的:(Python)