| 259 | return pi; |
| 260 | } |
| 261 | Eigen::Vector3d point2vec(const pcl::PointXYZI &pi) { |
| 262 | return Eigen::Vector3d(pi.x, pi.y, pi.z); |
| 263 | } |
| 264 | |
| 265 | bool attach_greater_sort(std::pair<double, int> a, std::pair<double, int> b) { |
| 266 | return (a.first > b.first); |
nothing calls this directly
no outgoing calls
no test coverage detected