| 103 | } |
| 104 | |
| 105 | ComponentInfo::ComponentInfo(const IBEdgeSelector::Config& config, |
| 106 | const hydra::EmbeddingGroup& tasks, |
| 107 | const hydra::EmbeddingDistance& metric, |
| 108 | const SceneGraphLayer& layer, |
| 109 | const std::vector<NodeId>& nodes, |
| 110 | double I_xy_full) |
| 111 | : edge_selector(config), ws(layer, nodes), segments(nodes) { |
| 112 | double delta_weight = computeDeltaWeight(layer, nodes); |
| 113 | clusterAgglomerative(ws, tasks, edge_selector, metric, true, I_xy_full, delta_weight); |
| 114 | } |
| 115 | |
| 116 | ObjectUpdateFunctor::ObjectUpdateFunctor(const Config& config) |
| 117 | : config(config::checkValid(config)), |
nothing calls this directly
no test coverage detected