当前位置:   article > 正文

python实现:计算一组图片的均值(mean)和标准差(std)_python 计算图像均值和方差

python 计算图像均值和方差

摘要

深度学习中,需要对数据预处理,经常会遇到都为三元组的标准差,在不知道数据集标准差和均值时,默认为[0.5,0.5,05.],本文给出计算均值和标准差的代码。

代码

import numpy as np
import cv2
import os

data_path = '/path/to/images'  # 数据集路径
img_height, img_width = 512, 512  # 图片尺寸

# 初始化变量
img_count = 0
img_sum = np.zeros((3,))
img_squared_sum = np.zeros((3,))

# 遍历数据集文件夹中的所有图片
for root, dirs, files in os.walk(data_path):
    for file in files:
        img_path = os.path.join(root, file)
        img = cv2.imread(img_path).astype(np.float32) / 255
        img = cv2.resize(img, (img_width, img_height))  # 缩放图片至指定尺寸
        img_count += 1
        img_sum += np.sum(img, axis=(0, 1))
        img_squared_sum += np.sum(img ** 2, axis=(0, 1))

# 计算每个通道的均值和标准差
channel_mean = img_sum / (img_count * img_height * img_width)
channel_std = np.sqrt((img_squared_sum / (img_count * img_height * img_width)) - (channel_mean ** 2))

print('每个通道的均值:', channel_mean)
print('每个通道的标准差:', channel_std)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/133113
推荐阅读
相关标签
  

闽ICP备14008679号