Class structure #3
pfmephisto
started this conversation in
Ideas
Replies: 1 comment
-
Maybe |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was thinking of structuring the
PointCloud
and newPointClouds
classes as follows, wherePointClouds
is just a wrapper around a vector ofPointCloud
My current challenge is just figuring out how I avoid reimplementing all methods or understanding what I need to inherit for the wrapper to work correctly.
PointCloud is currently just a
using PointCloud = pcl::PointCloud<PointT>
, but I can not add any extension methods to that class.On the other hand, this can also just be a functionality that is exposed in the Python module and in C++ it's a free function as it is right now.
Beta Was this translation helpful? Give feedback.
All reactions