Make Tile SEGS
ImpactPack/__for_testing
ImpactMakeTileSEGSExample
JSON Example
{
"class_type": "ImpactMakeTileSEGS",
"inputs": {
"images": [
"node_id",
0
],
"bbox_size": 512,
"crop_factor": 3,
"min_overlap": 5,
"filter_segs_dilation": 20,
"mask_irregularity": 0,
"irregular_mask_mode": "Reuse fast"
}
}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 |
|---|---|---|---|---|
images | IMAGE | required | - | - |
bbox_size | INT | required | min: 64, max: 4096, step: 8 | 512 |
crop_factor | FLOAT | required | min: 1, max: 10, step: 0.01 | 3 |
min_overlap | INT | required | min: 0, max: 512, step: 1 | 5 |
filter_segs_dilation | INT | required | min: -255, max: 255, step: 1 | 20 |
mask_irregularity | FLOAT | required | min: 0, max: 1, step: 0.01 | 0 |
irregular_mask_mode | ENUM4 options
| required | - | - |
filter_in_segs_opt | SEGS | optional | - | - |
filter_out_segs_opt | SEGS | 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 ImpactMakeTileSEGS 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?