Skip to content

Commit

Permalink
[sample_consensus] Adds Ellipse3D SacModel Class (PointCloudLibrary#5512
Browse files Browse the repository at this point in the history
)

* [sample_consensus] Adds Ellipse3D SacModel.

* [test/sample_consensus] Adds a test for the Ellipse3D model.

* Minor changes after review of PR#5512.

* Redeclaration of Eigen vars as 'const' to improve performance.
  • Loading branch information
mnobrecastro committed Nov 16, 2022
1 parent 57753ff commit ee3dca2
Show file tree
Hide file tree
Showing 8 changed files with 1,283 additions and 10 deletions.
3 changes: 3 additions & 0 deletions sample_consensus/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ set(srcs
src/sac_model_plane.cpp
src/sac_model_registration.cpp
src/sac_model_sphere.cpp
src/sac_model_ellipse3d.cpp
)

set(incs
Expand Down Expand Up @@ -59,6 +60,7 @@ set(incs
"include/pcl/${SUBSYS_NAME}/sac_model_registration.h"
"include/pcl/${SUBSYS_NAME}/sac_model_registration_2d.h"
"include/pcl/${SUBSYS_NAME}/sac_model_sphere.h"
"include/pcl/${SUBSYS_NAME}/sac_model_ellipse3d.h"
)

set(impl_incs
Expand All @@ -85,6 +87,7 @@ set(impl_incs
"include/pcl/${SUBSYS_NAME}/impl/sac_model_registration.hpp"
"include/pcl/${SUBSYS_NAME}/impl/sac_model_registration_2d.hpp"
"include/pcl/${SUBSYS_NAME}/impl/sac_model_sphere.hpp"
"include/pcl/${SUBSYS_NAME}/impl/sac_model_ellipse3d.hpp"
)

set(LIB_NAME "pcl_${SUBSYS_NAME}")
Expand Down
Loading

0 comments on commit ee3dca2

Please sign in to comment.