-
Notifications
You must be signed in to change notification settings - Fork 52
/
odometry_benchmark_small_gicp_model_tbb.cpp
75 lines (55 loc) · 2.54 KB
/
odometry_benchmark_small_gicp_model_tbb.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#ifdef BUILD_WITH_TBB
#include <small_gicp/benchmark/benchmark_odom.hpp>
#include <tbb/tbb.h>
#include <small_gicp/factors/gicp_factor.hpp>
#include <small_gicp/points/point_cloud.hpp>
#include <small_gicp/ann/gaussian_voxelmap.hpp>
#include <small_gicp/util/normal_estimation_tbb.hpp>
#include <small_gicp/registration/reduction_tbb.hpp>
#include <small_gicp/registration/registration.hpp>
namespace small_gicp {
class SmallGICPModelOnlineOdometryEstimationTBB : public OnlineOdometryEstimation {
public:
explicit SmallGICPModelOnlineOdometryEstimationTBB(const OdometryEstimationParams& params)
: OnlineOdometryEstimation(params),
control(tbb::global_control::max_allowed_parallelism, params.num_threads),
T_world_lidar(Eigen::Isometry3d::Identity()) {}
Eigen::Isometry3d estimate(const PointCloud::Ptr& points) override {
Stopwatch sw;
sw.start();
// Note that input points here is already downsampled
// Estimate per-point covariances
estimate_covariances_tbb(*points, params.num_neighbors);
if (voxelmap == nullptr) {
// This is the very first frame
voxelmap = std::make_shared<IncrementalVoxelMap<FlatContainerCov>>(params.voxel_resolution);
voxelmap->insert(*points);
return T_world_lidar;
}
// Registration using GICP + TBB-based parallel reduction
Registration<GICPFactor, ParallelReductionTBB> registration;
auto result = registration.align(*voxelmap, *points, *voxelmap, T_world_lidar);
// Update T_world_lidar with the estimated transformation
T_world_lidar = result.T_target_source;
// Insert points to the target voxel map
voxelmap->insert(*points, T_world_lidar);
sw.stop();
reg_times.push(sw.msec());
if (params.visualize) {
update_model_points(T_world_lidar, traits::voxel_points(*voxelmap));
}
return T_world_lidar;
}
void report() override { //
std::cout << "registration_time_stats=" << reg_times.str() << " [msec/scan] total_throughput=" << total_times.str() << " [msec/scan]" << std::endl;
}
private:
tbb::global_control control;
Summarizer reg_times;
IncrementalVoxelMap<FlatContainerCov>::Ptr voxelmap; // Target voxel map that is an accumulation of past point clouds
Eigen::Isometry3d T_world_lidar; // Current world-to-lidar transformation
};
static auto small_gicp_model_tbb_registry =
register_odometry("small_gicp_model_tbb", [](const OdometryEstimationParams& params) { return std::make_shared<SmallGICPModelOnlineOdometryEstimationTBB>(params); });
} // namespace small_gicp
#endif