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
|
// ----------------------------------------------------------------------------
// - Open3D: www.open3d.org -
// ----------------------------------------------------------------------------
// Copyright (c) 2018-2024 www.open3d.org
// SPDX-License-Identifier: MIT
// ----------------------------------------------------------------------------
#include "pybind/ml/ml.h"
#include "pybind/ml/contrib/contrib.h"
#include "pybind/open3d_pybind.h"
namespace open3d {
namespace ml {
void pybind_ml_declarations(py::module &m) {
py::module m_ml = m.def_submodule("ml");
contrib::pybind_contrib_declarations(m_ml);
}
void pybind_ml_definitions(py::module &m) {
auto m_ml = static_cast<py::module>(m.attr("ml"));
contrib::pybind_contrib_definitions(m_ml);
}
} // namespace ml
} // namespace open3d
|