[Model] Add Paddle3D CenterPoint model (#2078)

* add centerpoint

* update for review comments
This commit is contained in:
zengshao0622
2023-07-03 13:39:16 +08:00
committed by GitHub
parent b2426aefa9
commit 79a3587339
18 changed files with 761 additions and 29 deletions

View File

@@ -18,11 +18,13 @@ namespace fastdeploy {
void BindSmoke(pybind11::module& m);
void BindPetr(pybind11::module& m);
void BindCenterpoint(pybind11::module& m);
void BindPerception(pybind11::module& m) {
auto perception_module =
m.def_submodule("perception", "3D object perception models.");
BindSmoke(perception_module);
BindPetr(perception_module);
BindCenterpoint(perception_module);
}
} // namespace fastdeploy