IPAdapterApply (SEGS)
ImpactPack/Util
ImpactIPAdapterApplySEGSExample
JSON Example
{
"class_type": "ImpactIPAdapterApplySEGS",
"inputs": {
"segs": [
"node_id",
0
],
"ipadapter_pipe": [
"node_id",
0
],
"weight": 0.7,
"noise": 0.4,
"weight_type": "channel penalty",
"start_at": 0,
"end_at": 0.9,
"unfold_batch": false,
"faceid_v2": false,
"weight_v2": 1,
"context_crop_factor": 1.2,
"reference_image": [
"node_id",
0
]
}
}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 |
|---|---|---|---|---|
segs | SEGS | required | - | - |
ipadapter_pipe | IPADAPTER_PIPE | required | - | - |
weight | FLOAT | required | min: -1, max: 3, step: 0.05 | 0.7 |
noise | FLOAT | required | min: 0, max: 1, step: 0.01 | 0.4 |
weight_type | ENUM3 options
| required | - | "channel penalty" |
start_at | FLOAT | required | min: 0, max: 1, step: 0.001 | 0 |
end_at | FLOAT | required | min: 0, max: 1, step: 0.001 | 0.9 |
unfold_batch | BOOLEAN | required | - | false |
faceid_v2 | BOOLEAN | required | - | false |
weight_v2 | FLOAT | required | min: -1, max: 3, step: 0.05 | 1 |
context_crop_factor | FLOAT | required | min: 1, max: 100, step: 0.1 | 1.2 |
reference_image | IMAGE | required | - | - |
combine_embeds | ENUM5 options
| optional | - | - |
neg_image | IMAGE | optional | - | - |
Outputs
| Index | Name | Type | Is List | Connection Reference |
|---|---|---|---|---|
0 | SEGS | SEGS | 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 ImpactIPAdapterApplySEGS node in your workflow, and output_index is the index from the table above.
Example
If this node has ID "5" in your workflow:
SEGS (SEGS):["5", 0]
Was this page helpful?