Skip to main content

Make Tile SEGS

ImpactPack/__for_testing
ImpactMakeTileSEGS

Example

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

NameTypeStatusConstraintsDefault
imagesIMAGErequired--
bbox_sizeINTrequiredmin: 64, max: 4096, step: 8512
crop_factorFLOATrequiredmin: 1, max: 10, step: 0.013
min_overlapINTrequiredmin: 0, max: 512, step: 15
filter_segs_dilationINTrequiredmin: -255, max: 255, step: 120
mask_irregularityFLOATrequiredmin: 0, max: 1, step: 0.010
irregular_mask_modeENUM
4 options
  • Reuse fast
  • Reuse quality
  • All random fast
  • All random quality
required--
filter_in_segs_optSEGSoptional--
filter_out_segs_optSEGSoptional--

Outputs

IndexNameTypeIs ListConnection Reference
0SEGSSEGSNo["{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?