ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
reconstruction.cpp
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - CloudViewer: www.cloudViewer.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2024 www.cloudViewer.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
9 
20 
21 namespace cloudViewer {
22 namespace reconstruction {
23 
24 void pybind_reconstruction(py::module& m) {
25  py::module m_reconstruction = m.def_submodule("reconstruction");
27  database::pybind_database(m_reconstruction);
28  feature::pybind_feature(m_reconstruction);
29  image::pybind_image(m_reconstruction);
30  model::pybind_model(m_reconstruction);
31  mvs::pybind_multi_views_stereo(m_reconstruction);
32  sfm::pybind_structure_from_motion(m_reconstruction);
33  vocab_tree::pybind_vocab_tree(m_reconstruction);
34  gui::pybind_gui(m_reconstruction);
35 }
36 
37 } // namespace reconstruction
38 } // namespace cloudViewer
void pybind_database(py::module &m)
Definition: database.cpp:53
void pybind_feature(py::module &m)
Definition: feature.cpp:110
void pybind_gui(py::module &m)
Definition: gui.cpp:49
void pybind_image(py::module &m)
Definition: image.cpp:141
void pybind_model(py::module &m)
Definition: model.cpp:142
void pybind_multi_views_stereo(py::module &m)
void pybind_reconstruction(py::module &m)
Generic file read and write utility for python interface.