OrthogonalAnchorResult
OrthogonalAnchorResult(indices, seed_indices, candidate_source)Result of orthogonal anchor selection.
Orthogonal anchors are maximally spread points selected using greedy farthest-point sampling. Starting from seed points (typically super connectors), each subsequent anchor is chosen to maximize minimum distance from all previously selected anchors.
Attributes
| Name | Type | Description |
|---|---|---|
| indices | np.ndarray | Array of selected anchor indices |
| seed_indices | np.ndarray | Initial seed indices (e.g., super connectors) |
| candidate_source | str | Source of candidates (‘bridges’, ‘all’, or ‘custom’) |