gpt4 book ai didi

machine-learning - 图像归一化

转载 作者:行者123 更新时间:2023-11-30 09:52:23 25 4
gpt4 key购买 nike

在我看来,图像归一化就是让每个像素都归一化为 0 到 1 之间的值,对吗?

但是下面的代码是什么意思呢?

image_size = 28      # Pixel width and height.
pixel_depth = 255.0 # Number of levels per pixel.

for image in image_files:
image_file = os.path.join(folder, image)

try:
image_data = (ndimage.imread(image_file).astype(float) -
pixel_depth / 2) / pixel_depth # WHY ??
if image_data.shape != (image_size, image_size):
raise Exception('Unexpected image shape: %s' % str(image_data.shape))
dataset[num_images, :, :] = image_data
num_images = num_images + 1

except IOError as e:
print('Could not read:', image_file, ':', e, '- it\'s ok, skipping.')

最佳答案

Image normalization只是改变像素强度值范围的过程。

新系列的选择取决于您。

在您显示的情况下,看起来已选择范围 -0.5 .. 0.5。

关于machine-learning - 图像归一化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42829882/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com