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 t {
18 namespace pipelines {
19 
20 void pybind_pipelines(py::module& m) {
21  py::module m_pipelines = m.def_submodule(
22  "pipelines", "Tensor-based geometry processing pipelines.");
23  odometry::pybind_odometry(m_pipelines);
25  slac::pybind_slac(m_pipelines);
26  slam::pybind_slam(m_pipelines);
27 }
28 
29 } // namespace pipelines
30 } // namespace t
31 } // namespace cloudViewer
void pybind_odometry(py::module &m)
Definition: odometry.cpp:80
void pybind_slac(py::module &m)
Definition: slac.cpp:35
void pybind_slam(py::module &m)
Definition: slam.cpp:57
void pybind_pipelines(py::module &m)
Definition: pipelines.cpp:20
Generic file read and write utility for python interface.