-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathOnlineSLAMRealSense.cpp
More file actions
152 lines (131 loc) · 5.25 KB
/
Copy pathOnlineSLAMRealSense.cpp
File metadata and controls
152 lines (131 loc) · 5.25 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
// ----------------------------------------------------------------------------
// - Open3D: www.open3d.org -
// ----------------------------------------------------------------------------
// Copyright (c) 2018-2024 www.open3d.org
// SPDX-License-Identifier: MIT
// ----------------------------------------------------------------------------
#include <chrono>
#include <memory>
#include <string>
#include "OnlineSLAMUtil.h"
#include "open3d/Open3D.h"
void PrintHelp() {
using namespace open3d;
PrintOpen3DVersion();
// clang-format off
utility::LogInfo("Usage:");
utility::LogInfo(" > OnlineSLAMRealSense [options]");
utility::LogInfo("Basic options:");
utility::LogInfo(" [-V]");
utility::LogInfo(" [--use_bag_file /path/to/realsense_video_file.bag] If not provided, it will look for realsense sensor.");
utility::LogInfo(" [-l|--list-devices]");
utility::LogInfo(" [--align]");
utility::LogInfo(" [--record rgbd_video_file.bag]");
utility::LogInfo(" [-c|--config rs-config.json]");
utility::LogInfo(" [--device CUDA:0]");
// clang-format on
utility::LogInfo("");
}
int main(int argc, char* argv[]) {
using namespace open3d;
using namespace open3d::visualization;
utility::SetVerbosityLevel(utility::VerbosityLevel::Debug);
if (argc < 2 ||
utility::ProgramOptionExistsAny(argc, argv, {"-h", "--help"})) {
PrintHelp();
return 1;
}
std::string bag_file;
bool use_bag_file = false;
if (utility::ProgramOptionExists(argc, argv, "--use_bag_file")) {
bag_file =
utility::GetProgramOptionAsString(argc, argv, "--use_bag_file");
}
if (!bag_file.empty()) {
use_bag_file = true;
}
if (utility::ProgramOptionExists(argc, argv, "--list-devices") ||
utility::ProgramOptionExists(argc, argv, "-l")) {
t::io::RealSenseSensor::ListDevices();
return 0;
}
if (utility::ProgramOptionExists(argc, argv, "-V")) {
utility::SetVerbosityLevel(utility::VerbosityLevel::Debug);
} else {
utility::SetVerbosityLevel(utility::VerbosityLevel::Info);
}
bool align_streams = false;
std::string config_file, record_to_bag_file;
if (utility::ProgramOptionExists(argc, argv, "-c")) {
config_file = utility::GetProgramOptionAsString(argc, argv, "-c");
} else if (utility::ProgramOptionExists(argc, argv, "--config")) {
config_file = utility::GetProgramOptionAsString(argc, argv, "--config");
}
if (utility::ProgramOptionExists(argc, argv, "--align")) {
align_streams = true;
}
if (utility::ProgramOptionExists(argc, argv, "--record")) {
record_to_bag_file =
utility::GetProgramOptionAsString(argc, argv, "--record");
}
std::string device_code =
utility::GetProgramOptionAsString(argc, argv, "--device", "CUDA:0");
core::Device device(device_code);
utility::LogInfo("Using device {}.", device_code);
std::function<t::geometry::RGBDImage(const int)> get_rgbd_image_input;
core::Tensor intrinsic_t;
std::unordered_map<std::string, double> default_params;
t::io::RealSenseSensor rs;
t::io::RSBagReader bag_reader;
if (!use_bag_file) {
// Read in camera configuration.
t::io::RealSenseSensorConfig rs_cfg;
if (!config_file.empty())
open3d::io::ReadIJsonConvertible(config_file, rs_cfg);
// Initialize camera.
rs.ListDevices();
rs.InitSensor(rs_cfg, 0, record_to_bag_file);
utility::LogInfo("{}", rs.GetMetadata().ToString());
rs.StartCapture();
get_rgbd_image_input = [&](const size_t idx) {
return rs.CaptureFrame(true, align_streams);
};
intrinsic_t = core::eigen_converter::EigenMatrixToTensor(
rs.GetMetadata().intrinsics_.intrinsic_matrix_);
default_params = {{"depth_scale", rs.GetMetadata().depth_scale_}};
} else {
// Use Bag File.
bag_reader.Open(bag_file);
if (!bag_reader.IsOpened()) {
utility::LogError("Unable to open {}", bag_file);
return 1;
}
const auto bag_metadata = bag_reader.GetMetadata();
utility::LogInfo("{}", bag_metadata.ToString());
auto next_frame = bag_reader.NextFrame();
get_rgbd_image_input = [&](const int idx) {
if (!bag_reader.IsEOF()) {
return bag_reader.NextFrame();
} else {
// Return empty image.
return open3d::t::geometry::RGBDImage();
}
};
intrinsic_t = core::eigen_converter::EigenMatrixToTensor(
bag_metadata.intrinsics_.intrinsic_matrix_);
default_params = {{"depth_scale", bag_metadata.depth_scale_}};
}
auto& app = gui::Application::GetInstance();
app.Initialize();
auto mono =
app.AddFont(gui::FontDescription(gui::FontDescription::MONOSPACE));
app.AddWindow(std::make_shared<examples::online_slam::ReconstructionWindow>(
get_rgbd_image_input, intrinsic_t, default_params, device, mono));
app.Run();
if (!use_bag_file) {
rs.StopCapture();
} else {
bag_reader.Close();
}
return 0;
}