Open3D (C++ API)  0.17.0
Loading...
Searching...
No Matches
ModelIO.h
Go to the documentation of this file.
1// ----------------------------------------------------------------------------
2// - Open3D: www.open3d.org -
3// ----------------------------------------------------------------------------
4// Copyright (c) 2018-2023 www.open3d.org
5// SPDX-License-Identifier: MIT
6// ----------------------------------------------------------------------------
7
8#pragma once
9
10#include <functional>
11#include <string>
12
13namespace open3d {
14namespace visualization {
15namespace rendering {
17}
18} // namespace visualization
19
20namespace io {
21
26 bool print_progress = false;
30 std::function<bool(double)> update_progress;
31};
32
33bool ReadTriangleModel(const std::string& filename,
35 ReadTriangleModelOptions params = {});
36
37} // namespace io
38} // namespace open3d
bool ReadTriangleModel(const std::string &filename, visualization::rendering::TriangleMeshModel &model, ReadTriangleModelOptions params)
Definition ModelIO.cpp:23
Definition PinholeCameraIntrinsic.cpp:16
std::function< bool(double)> update_progress
Definition ModelIO.h:30
bool print_progress
Definition ModelIO.h:26