| 132 | } |
| 133 | |
| 134 | void Instance::computeGraph(const CloudT::Ptr cloud, const CloudT::Ptr tree_cloud, |
| 135 | std::vector<std::vector<TreeVertex>> &landmarks) { |
| 136 | pcl::PointCloud<pcl::Label> euclidean_labels; |
| 137 | std::vector<pcl::PointIndices> label_indices; |
| 138 | findClusters(tree_cloud, euclidean_labels, label_indices); |
| 139 | findTrees(tree_cloud, euclidean_labels, label_indices, landmarks); |
| 140 | } |
no test coverage detected