Skip to content

Commit 2f8e2b3

Browse files
committed
FIX: namespace fix for registrations
1 parent 415ab6c commit 2f8e2b3

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

deps/eigen

Submodule eigen updated from 9700fc8 to de8013f

src/diffCheck/registrations/DFRefinedRegistration.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "DFRefinedRegistration.hh"
22

33

4-
namespace diffCheck::registration
4+
namespace diffCheck::registrations
55
{
66
diffCheck::transformation::DFTransformation RefinedRegistration::O3DICP(
77
std::shared_ptr<geometry::DFPointCloud> source,

src/diffCheck/registrations/DFRefinedRegistration.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# include <open3d/pipelines/registration/Registration.h>
55

6-
namespace diffCheck::registration
6+
namespace diffCheck::registrations
77
{
88
class RefinedRegistration
99
{

src/diffCheckApp.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ int main()
3636
dfPointCloudPtr->ApplyTransformation(transformation);
3737

3838
diffCheck::transformation::DFTransformation simpleICPTransformation
39-
= diffCheck::registration::RefinedRegistration::O3DICP(
39+
= diffCheck::registrations::RefinedRegistration::O3DICP(
4040
dfPointCloudPtr,
4141
dfGroundTruth,
4242
0.05);
4343

4444
diffCheck::transformation::DFTransformation generalizedICPTransformation
45-
= diffCheck::registration::RefinedRegistration::O3DGeneralizedICP(
45+
= diffCheck::registrations::RefinedRegistration::O3DGeneralizedICP(
4646
dfPointCloudPtr,
4747
dfGroundTruth,
4848
0.05);

src/diffCheckBindings.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ PYBIND11_MODULE(diffcheck_bindings, m) {
8282
[](const diffCheck::geometry::DFMesh &self) { return self.ColorsFace; },
8383
[](diffCheck::geometry::DFMesh &self, const std::vector<Eigen::Vector3d>& value) { self.ColorsFace = value; });
8484

85-
// //#################################################################################################
86-
// // df_registration namespace
87-
// //#################################################################################################
85+
//#################################################################################################
86+
// df_registration namespace
87+
//#################################################################################################
8888

8989
// py::module_ submodule_geometry = m.def_submodule("df_registration", "A submodule for the registration methods.");
9090
}

0 commit comments

Comments
 (0)