> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-docs-recommend-assets-api.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# NormalizeImages - ComfyUI Built-in Node Documentation

> Complete documentation for the NormalizeImages node in ComfyUI. Learn its inputs, outputs, parameters and usage.

> 本文档由 AI 生成。如果您发现任何错误或有改进建议，欢迎贡献！ [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/NormalizeImages/zh.md)

此节点通过数学归一化过程调整输入图像的像素值。它会从每个像素中减去指定的均值，然后将结果除以指定的标准差。这是为其他机器学习模型准备图像数据时常见的预处理步骤。

## 输入参数

| 参数      | 数据类型  | 必填 | 取值范围        | 描述                      |
| ------- | ----- | -- | ----------- | ----------------------- |
| `image` | IMAGE | 是  | -           | 待归一化的输入图像。              |
| `mean`  | FLOAT | 否  | 0.0 - 1.0   | 从图像像素中减去的均值（默认值：0.5）。   |
| `std`   | FLOAT | 否  | 0.001 - 1.0 | 用于除以图像像素的标准差值（默认值：0.5）。 |

## 输出结果

| 输出名称    | 数据类型  | 描述             |
| ------- | ----- | -------------- |
| `image` | IMAGE | 应用归一化处理后得到的图像。 |
