edges op• Data kinds: voxel → voxel
• Call: import fullseye as fs; fs.ledger.link_edges(edge_mask) (to call the implementation directly, import edges3d; edges3d.link_edges(edge_mask); from the registry, ops3d.get("link_edges"))
• Return value through the ledger: fullseye.ledger.link_edges(...) returns **only the declared out type voxel** (the underlying function also returns auxiliary values). When you need what was dropped, use fullseye.ledger.link_edges.raw(...) or call edges3d.link_edges directly.
• Underlying return: (linked, n)
Label an edge mask into connected components with 26-neighbour connectivity.
> The detailed description below is the original text — the summary and the headings are translated.
Parameters
----------
edge_mask : (D,H,W) bool
Returns
-------
labels : (D,H,W) int
各 voxel の成分ラベル(背景 = 0、成分 = 1..n)。
n : int
連結成分数。
Notes
-----
26 連結(3x3x3 の全近傍)。断片化したエッジ片を 1 本の曲線 / 閉曲面としてまとめ、
下流の Hough / chamfer で成分単位に扱えるようにする。
• Sample-data catalog (download URLs / licences) — 2-D uses skimage.data (BSD/public domain) plus synthetic images; 3-D lists download URLs for real data sources (Stanford, PDS, …).
• Operator provenance and references — the sources of the research/methods this op family came from.
• sensor_seg — py -3.11 examples_3d/sensor_seg.py
voxel as input)voxel_to_mips · voxel_to_mesh · signed_distance_field · to_points · sobel3d · hessian3d · curvature_maps · edt_jfa
edges)gradient3d · canny3d · log_zero_crossings · edge_points
*Provenance: edges3d.py — 3D operator registry. This per-op note is generated by tools/opdocs.py md (do not hand-edit).*
© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.