Bootstrap

【Python】图像归一化

import numpy as np
# image为array类型,多少维度都无所谓,直接操作全部元素
image = (image - np.min(image)) / (np.max(image) - np.min(image))
;