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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
// ----------------------------------------------------------------------------
// - Open3D: www.open3d.org -
// ----------------------------------------------------------------------------
// Copyright (c) 2018-2024 www.open3d.org
// SPDX-License-Identifier: MIT
// ----------------------------------------------------------------------------
#include <json/json.h>
#include <chrono>
#include <fstream>
#include <thread>
#include "open3d/Open3D.h"
using namespace open3d;
void WriteJsonToFile(const std::string &filename, const Json::Value &value) {
std::ofstream out(filename);
if (!out.is_open()) {
utility::LogError("Cannot write to {}", filename);
}
Json::StreamWriterBuilder builder;
builder["commentStyle"] = "None";
builder["indentation"] = "\t";
std::unique_ptr<Json::StreamWriter> writer(builder.newStreamWriter());
writer->write(value, &out);
}
Json::Value GenerateDatasetConfig(const std::string &output_path) {
Json::Value value;
utility::LogInfo("Writing to config.json");
utility::LogInfo(
"Please change path_dataset and path_intrinsic when you move the "
"dataset.");
if (output_path[0] == '/') { // global dir
value["path_dataset"] = output_path;
value["path_intrinsic"] = output_path + "/intrinsic.json";
} else { // relative dir
auto pwd = utility::filesystem::GetWorkingDirectory();
value["path_dataset"] = pwd + "/" + output_path;
value["path_intrinsic"] = pwd + "/" + output_path + "/intrinsic.json";
}
value["name"] = "Azure Kinect Record";
value["depth_max"] = 3.0;
value["voxel_size"] = 0.05;
value["depth_diff_max"] = 0.07;
value["preference_loop_closure_odometry"] = 0.1;
value["preference_loop_closure_registration"] = 5.0;
value["tsdf_cubic_size"] = 3.0;
value["icp_method"] = "color";
value["global_registration"] = "ransac";
value["python_multi_threading"] = true;
return value;
}
void PrintHelp() {
using namespace open3d;
PrintOpen3DVersion();
// clang-format off
utility::LogInfo("Usage:");
utility::LogInfo(" > AzureKinectMKVReader --input input.mkv [--output] [path]");
// clang-format on
utility::LogInfo("");
}
int main(int argc, char **argv) {
utility::SetVerbosityLevel(utility::VerbosityLevel::Debug);
if (argc == 1 ||
utility::ProgramOptionExistsAny(argc, argv, {"-h", "--help"}) ||
!utility::ProgramOptionExists(argc, argv, "--input")) {
PrintHelp();
return 1;
}
std::string mkv_filename =
utility::GetProgramOptionAsString(argc, argv, "--input");
bool write_image = false;
std::string output_path;
if (!utility::ProgramOptionExists(argc, argv, "--output")) {
utility::LogInfo("No output image path, only play mkv.");
} else {
output_path = utility::GetProgramOptionAsString(argc, argv, "--output");
if (output_path.empty()) {
utility::LogError("Output path {} is empty, only play mkv.",
output_path);
return 1;
}
if (utility::filesystem::DirectoryExists(output_path)) {
utility::LogError("Output path {} already existing, only play mkv.",
output_path);
return 1;
} else if (!utility::filesystem::MakeDirectory(output_path)) {
utility::LogError("Unable to create path {}, only play mkv.",
output_path);
return 1;
} else {
utility::LogInfo("Decompress images to {}", output_path);
utility::filesystem::MakeDirectoryHierarchy(output_path + "/color");
utility::filesystem::MakeDirectoryHierarchy(output_path + "/depth");
write_image = true;
}
}
io::MKVReader mkv_reader;
mkv_reader.Open(mkv_filename);
if (!mkv_reader.IsOpened()) {
utility::LogError("Unable to open {}", mkv_filename);
return 1;
}
bool flag_exit = false;
bool flag_play = true;
visualization::VisualizerWithKeyCallback vis;
vis.RegisterKeyCallback(GLFW_KEY_ESCAPE,
[&](visualization::Visualizer *vis) {
flag_exit = true;
return true;
});
vis.RegisterKeyCallback(
GLFW_KEY_SPACE, [&](visualization::Visualizer *vis) {
if (flag_play) {
utility::LogInfo(
"Playback paused, press [SPACE] to continue");
} else {
utility::LogInfo(
"Playback resumed, press [SPACE] to pause");
}
flag_play = !flag_play;
return true;
});
vis.CreateVisualizerWindow("Open3D Azure Kinect MKV player", 1920, 540);
utility::LogInfo(
"Starting to play. Press [SPACE] to pause. Press [ESC] to "
"exit.");
bool is_geometry_added = false;
int idx = 0;
if (write_image) {
io::WriteIJsonConvertibleToJSON(
fmt::format("{}/intrinsic.json", output_path),
mkv_reader.GetMetadata());
WriteJsonToFile(fmt::format("{}/config.json", output_path),
GenerateDatasetConfig(output_path));
}
while (!mkv_reader.IsEOF() && !flag_exit) {
if (flag_play) {
auto im_rgbd = mkv_reader.NextFrame();
if (im_rgbd == nullptr) continue;
if (!is_geometry_added) {
vis.AddGeometry(im_rgbd);
is_geometry_added = true;
}
if (write_image) {
auto color_file =
fmt::format("{0}/color/{1:05d}.jpg", output_path, idx);
utility::LogInfo("Writing to {}", color_file);
io::WriteImage(color_file, im_rgbd->color_);
auto depth_file =
fmt::format("{0}/depth/{1:05d}.png", output_path, idx);
utility::LogInfo("Writing to {}", depth_file);
io::WriteImage(depth_file, im_rgbd->depth_);
++idx;
}
}
vis.UpdateGeometry();
vis.PollEvents();
vis.UpdateRender();
}
mkv_reader.Close();
}
|