Skip to main content

🔧 Noise From Image

essentials/image utils
NoiseFromImage+

Example

JSON Example
{
  "class_type": "NoiseFromImage+",
  "inputs": {
    "image": [
      "node_id",
      0
    ],
    "noise_strenght": 1,
    "noise_size": 1,
    "color_noise": 0.2,
    "mask_strength": 0.5,
    "mask_scale_diff": 0,
    "mask_contrast": 1,
    "saturation": 2,
    "contrast": 1,
    "blur": 1
  }
}

This example shows required inputs only. Connection values like ["node_id", 0] should reference actual node IDs from your workflow.

Inputs

NameTypeStatusConstraintsDefault
imageIMAGErequired--
noise_strenghtFLOATrequiredmin: 0, max: 1, step: 0.011
noise_sizeFLOATrequiredmin: 0, max: 1, step: 0.011
color_noiseFLOATrequiredmin: 0, max: 1, step: 0.010.2
mask_strengthFLOATrequiredmin: 0, max: 1, step: 0.010.5
mask_scale_diffFLOATrequiredmin: 0, max: 1, step: 0.010
mask_contrastFLOATrequiredmin: 0, max: 100, step: 0.11
saturationFLOATrequiredmin: 0, max: 100, step: 0.12
contrastFLOATrequiredmin: 0, max: 100, step: 0.11
blurFLOATrequiredmin: 0, max: 10, step: 0.11
noise_maskIMAGEoptional--

Outputs

IndexNameTypeIs ListConnection Reference
0IMAGEIMAGENo["{node_id}", 0]
How to connect to these outputs

To connect another node's input to an output from this node, use the connection reference format:

["node_id", output_index]

Where node_id is the ID of this NoiseFromImage+ node in your workflow, and output_index is the index from the table above.

Example

If this node has ID "5" in your workflow:

  • IMAGE (IMAGE): ["5", 0]
Was this page helpful?