Autoware.Auto
euclidean_cluster.cpp File Reference
#include <lidar_utils/point_cloud_utils.hpp>
#include <cstring>
#include <algorithm>
#include <string>
#include <utility>
#include "euclidean_cluster/euclidean_cluster.hpp"
#include "geometry/bounding_box_2d.hpp"
Include dependency graph for euclidean_cluster.cpp:

Namespaces

 autoware
 This file defines the lanelet2_map_provider_node class.
 
 autoware::perception
 Perception related algorithms and functionality, such as those acting on 3D lidar data, camera data, radar, or ultrasonic information.
 
 autoware::perception::segmentation
 
 autoware::perception::segmentation::euclidean_cluster
 Supporting classes for euclidean clustering, an object detection algorithm.
 
 autoware::perception::segmentation::euclidean_cluster::details
 Common euclidean cluster functions not intended for external use.
 

Functions

EUCLIDEAN_CLUSTER_PUBLIC BoundingBox autoware::perception::segmentation::euclidean_cluster::details::compute_eigenbox (const Cluster &cls)
 Compute eigenbox from individual cluster. More...
 
EUCLIDEAN_CLUSTER_PUBLIC BoundingBox autoware::perception::segmentation::euclidean_cluster::details::compute_lfit_bounding_box (Cluster &cls)
 Compute lfit bounding box from individual cluster. More...
 
EUCLIDEAN_CLUSTER_PUBLIC void autoware::perception::segmentation::euclidean_cluster::details::compute_eigenboxes (const Clusters &clusters, BoundingBoxArray &boxes)
 Compute eigenboxes from clusters. More...
 
EUCLIDEAN_CLUSTER_PUBLIC void autoware::perception::segmentation::euclidean_cluster::details::compute_eigenboxes_with_z (const Clusters &clusters, BoundingBoxArray &boxes)
 Compute eigenboxes from clusters, including z coordinate. More...
 
EUCLIDEAN_CLUSTER_PUBLIC void autoware::perception::segmentation::euclidean_cluster::details::compute_lfit_bounding_boxes (Clusters &clusters, BoundingBoxArray &boxes)
 Compute lfit bounding boxes from clusters. More...
 
EUCLIDEAN_CLUSTER_PUBLIC void autoware::perception::segmentation::euclidean_cluster::details::compute_lfit_bounding_boxes_with_z (Clusters &clusters, BoundingBoxArray &boxes)
 Compute lfit bounding boxes from clusters, including z coordinate. More...