🔧 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
| Name | Type | Status | Constraints | Default |
|---|---|---|---|---|
image | IMAGE | required | - | - |
noise_strenght | FLOAT | required | min: 0, max: 1, step: 0.01 | 1 |
noise_size | FLOAT | required | min: 0, max: 1, step: 0.01 | 1 |
color_noise | FLOAT | required | min: 0, max: 1, step: 0.01 | 0.2 |
mask_strength | FLOAT | required | min: 0, max: 1, step: 0.01 | 0.5 |
mask_scale_diff | FLOAT | required | min: 0, max: 1, step: 0.01 | 0 |
mask_contrast | FLOAT | required | min: 0, max: 100, step: 0.1 | 1 |
saturation | FLOAT | required | min: 0, max: 100, step: 0.1 | 2 |
contrast | FLOAT | required | min: 0, max: 100, step: 0.1 | 1 |
blur | FLOAT | required | min: 0, max: 10, step: 0.1 | 1 |
noise_mask | IMAGE | optional | - | - |
Outputs
| Index | Name | Type | Is List | Connection Reference |
|---|---|---|---|---|
0 | IMAGE | IMAGE | No | ["{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?