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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
|
// ----------------------------------------------------------------------------
// - Open3D: www.open3d.org -
// ----------------------------------------------------------------------------
// Copyright (c) 2018-2024 www.open3d.org
// SPDX-License-Identifier: MIT
// ----------------------------------------------------------------------------
#include <iostream>
#include <memory>
#include <thread>
#include "open3d/Open3D.h"
void PrintHelp() {
using namespace open3d;
PrintOpen3DVersion();
// clang-format off
utility::LogInfo("Usage:");
utility::LogInfo(" > Visualizer [mesh|spin|slowspin|pointcloud|rainbow|image|depth|editing|editmesh] [filename]");
utility::LogInfo(" > Visualizer [animation] [filename] [trajectoryfile]");
utility::LogInfo(" > Visualizer [rgbd] [color] [depth] [--rgbd_type]");
// clang-format on
utility::LogInfo("");
}
int main(int argc, char *argv[]) {
using namespace open3d;
utility::SetVerbosityLevel(utility::VerbosityLevel::Debug);
if (argc < 3 ||
utility::ProgramOptionExistsAny(argc, argv, {"-h", "--help"})) {
PrintHelp();
return 1;
}
std::string option(argv[1]);
if (option == "mesh") {
auto mesh_ptr = std::make_shared<geometry::TriangleMesh>();
if (io::ReadTriangleMesh(argv[2], *mesh_ptr)) {
utility::LogInfo("Successfully read {}", argv[2]);
} else {
utility::LogWarning("Failed to read {}", argv[2]);
return 1;
}
mesh_ptr->ComputeVertexNormals();
visualization::DrawGeometries({mesh_ptr}, "Mesh", 1600, 900);
} else if (option == "editmesh") {
auto mesh_ptr = std::make_shared<geometry::TriangleMesh>();
if (io::ReadTriangleMesh(argv[2], *mesh_ptr)) {
utility::LogInfo("Successfully read {}", argv[2]);
} else {
utility::LogWarning("Failed to read {}", argv[2]);
return 1;
}
mesh_ptr->ComputeVertexNormals();
visualization::DrawGeometriesWithVertexSelection(
{mesh_ptr}, "Edit Mesh", 1600, 900);
} else if (option == "spin") {
auto mesh_ptr = std::make_shared<geometry::TriangleMesh>();
if (io::ReadTriangleMesh(argv[2], *mesh_ptr)) {
utility::LogInfo("Successfully read {}", argv[2]);
} else {
utility::LogWarning("Failed to read {}", argv[2]);
return 1;
}
mesh_ptr->ComputeVertexNormals();
visualization::DrawGeometriesWithAnimationCallback(
{mesh_ptr},
[&](visualization::Visualizer *vis) {
vis->GetViewControl().Rotate(10, 0);
std::this_thread::sleep_for(std::chrono::milliseconds(30));
return false;
},
"Spin", 1600, 900);
} else if (option == "slowspin") {
auto mesh_ptr = std::make_shared<geometry::TriangleMesh>();
if (io::ReadTriangleMesh(argv[2], *mesh_ptr)) {
utility::LogInfo("Successfully read {}", argv[2]);
} else {
utility::LogWarning("Failed to read {}", argv[2]);
return 1;
}
mesh_ptr->ComputeVertexNormals();
visualization::DrawGeometriesWithKeyCallbacks(
{mesh_ptr},
{{GLFW_KEY_SPACE,
[&](visualization::Visualizer *vis) {
vis->GetViewControl().Rotate(10, 0);
std::this_thread::sleep_for(
std::chrono::milliseconds(30));
return false;
}}},
"Press Space key to spin", 1600, 900);
} else if (option == "pointcloud") {
auto cloud_ptr = std::make_shared<geometry::PointCloud>();
if (io::ReadPointCloud(argv[2], *cloud_ptr)) {
utility::LogInfo("Successfully read {}", argv[2]);
} else {
utility::LogWarning("Failed to read {}", argv[2]);
return 1;
}
cloud_ptr->NormalizeNormals();
visualization::DrawGeometries({cloud_ptr}, "PointCloud", 1600, 900);
} else if (option == "rainbow") {
auto cloud_ptr = std::make_shared<geometry::PointCloud>();
if (io::ReadPointCloud(argv[2], *cloud_ptr)) {
utility::LogInfo("Successfully read {}", argv[2]);
} else {
utility::LogWarning("Failed to read {}", argv[2]);
return 1;
}
cloud_ptr->NormalizeNormals();
cloud_ptr->colors_.resize(cloud_ptr->points_.size());
double color_index = 0.0;
double color_index_step = 0.05;
auto update_colors_func = [&cloud_ptr](double index) {
auto color_map_ptr = visualization::GetGlobalColorMap();
for (auto &c : cloud_ptr->colors_) {
c = color_map_ptr->GetColor(index);
}
};
update_colors_func(1.0);
visualization::DrawGeometriesWithAnimationCallback(
{cloud_ptr},
[&](visualization::Visualizer *vis) {
color_index += color_index_step;
if (color_index > 2.0) color_index -= 2.0;
update_colors_func(fabs(color_index - 1.0));
std::this_thread::sleep_for(std::chrono::milliseconds(100));
return true;
},
"Rainbow", 1600, 900);
} else if (option == "image") {
auto image_ptr = std::make_shared<geometry::Image>();
if (io::ReadImage(argv[2], *image_ptr)) {
utility::LogInfo("Successfully read {}", argv[2]);
} else {
utility::LogWarning("Failed to read {}", argv[2]);
return 1;
}
visualization::DrawGeometries({image_ptr}, "Image", image_ptr->width_,
image_ptr->height_);
} else if (option == "rgbd") {
if (argc < 4) {
PrintHelp();
return 1;
}
int rgbd_type =
utility::GetProgramOptionAsInt(argc, argv, "--rgbd_type", 0);
auto color_ptr = std::make_shared<geometry::Image>();
auto depth_ptr = std::make_shared<geometry::Image>();
if (io::ReadImage(argv[2], *color_ptr)) {
utility::LogInfo("Successfully read {}", argv[2]);
} else {
utility::LogWarning("Failed to read {}", argv[2]);
return 1;
}
if (io::ReadImage(argv[3], *depth_ptr)) {
utility::LogInfo("Successfully read {}", argv[3]);
} else {
utility::LogWarning("Failed to read {}", argv[3]);
return 1;
}
std::shared_ptr<geometry::RGBDImage> (*CreateRGBDImage)(
const geometry::Image &, const geometry::Image &, bool);
if (rgbd_type == 0)
CreateRGBDImage = &geometry::RGBDImage::CreateFromRedwoodFormat;
else if (rgbd_type == 1)
CreateRGBDImage = &geometry::RGBDImage::CreateFromTUMFormat;
else if (rgbd_type == 2)
CreateRGBDImage = &geometry::RGBDImage::CreateFromSUNFormat;
else if (rgbd_type == 3)
CreateRGBDImage = &geometry::RGBDImage::CreateFromNYUFormat;
else
CreateRGBDImage = &geometry::RGBDImage::CreateFromRedwoodFormat;
auto rgbd_ptr = CreateRGBDImage(*color_ptr, *depth_ptr, false);
visualization::DrawGeometries({rgbd_ptr}, "RGBD", depth_ptr->width_ * 2,
depth_ptr->height_);
} else if (option == "depth") {
auto image_ptr = io::CreateImageFromFile(argv[2]);
camera::PinholeCameraIntrinsic camera;
camera.SetIntrinsics(640, 480, 575.0, 575.0, 319.5, 239.5);
auto pointcloud_ptr =
geometry::PointCloud::CreateFromDepthImage(*image_ptr, camera);
visualization::DrawGeometries(
{pointcloud_ptr},
"geometry::PointCloud from Depth geometry::Image", 1920, 1080);
} else if (option == "editing") {
auto pcd = io::CreatePointCloudFromFile(argv[2]);
visualization::DrawGeometriesWithEditing({pcd}, "Editing", 1920, 1080);
} else if (option == "animation") {
auto mesh_ptr = std::make_shared<geometry::TriangleMesh>();
if (io::ReadTriangleMesh(argv[2], *mesh_ptr)) {
utility::LogInfo("Successfully read {}", argv[2]);
} else {
utility::LogWarning("Failed to read {}", argv[2]);
return 1;
}
mesh_ptr->ComputeVertexNormals();
if (argc == 3) {
visualization::DrawGeometriesWithCustomAnimation(
{mesh_ptr}, "Animation", 1920, 1080);
} else {
visualization::DrawGeometriesWithCustomAnimation(
{mesh_ptr}, "Animation", 1600, 900, 50, 50, argv[3]);
}
}
utility::LogInfo("End of the test.");
return 0;
}
|