class mp2p_icp_filters::FilterByRange
Overview
Filter points according to whether their range (distance from “center”) is between a (min,max) range or not. By default, “center” is at (0,0,0) in the point cloud frame of reference.
There are two (optional) output target layers, one for the points within the range [min,max] (output_layer_between) and another for those outside of the range (output_layer_outside). At least one must be provided.
#include <FilterByRange.h> class FilterByRange: public mp2p_icp_filters::FilterBase { public: // structs struct Parameters; // fields Parameters params; // methods virtual void initialize_filter(const mrpt::containers::yaml& c); virtual void filter(mp2p_icp::metric_map_t& inOut) const; };
Inherited Members
public: // methods virtual void filter(mp2p_icp::metric_map_t& inOut) const = 0; FilterBase& operator = (const FilterBase&); FilterBase& operator = (FilterBase&&);
Fields
Parameters params
Algorithm parameters
Methods
virtual void filter(mp2p_icp::metric_map_t& inOut) const
See docs above for FilterBase.