ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
pipelines.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 
15 
16 namespace cloudViewer {
17 namespace pipelines {
18 
19 void pybind_pipelines(py::module& m) {
20  py::module m_pipelines = m.def_submodule("pipelines");
21  color_map::pybind_color_map(m_pipelines);
24  odometry::pybind_odometry(m_pipelines);
25 }
26 
27 } // namespace pipelines
28 } // namespace cloudViewer
void pybind_color_map(py::module &m)
Definition: color_map.cpp:180
void pybind_integration(py::module &m)
void pybind_odometry(py::module &m)
Definition: odometry.cpp:172
void pybind_pipelines(py::module &m)
Definition: pipelines.cpp:19
Generic file read and write utility for python interface.