| 244 | } |
| 245 | |
| 246 | double time_inc(std::chrono::_V2::system_clock::time_point &t_end, |
| 247 | std::chrono::_V2::system_clock::time_point &t_begin) { |
| 248 | return std::chrono::duration_cast<std::chrono::duration<double>>(t_end - |
| 249 | t_begin) |
| 250 | .count() * |
| 251 | 1000; |
| 252 | } |
| 253 | |
| 254 | pcl::PointXYZI vec2point(const Eigen::Vector3d &vec) { |
| 255 | pcl::PointXYZI pi; |
nothing calls this directly
no outgoing calls
no test coverage detected