44#include <pcl/common/io.h>
45#include <pcl/common/point_tests.h>
46#include <pcl/filters/local_maximum.h>
47#include <pcl/filters/project_inliers.h>
48#include <pcl/ModelCoefficients.h>
49#include <pcl/search/organized.h>
50#include <pcl/search/kdtree.h>
53template <
typename Po
intT>
void
59 PCL_WARN (
"[pcl::%s::applyFilter] No input dataset given!\n",
getClassName ().c_str ());
60 output.width = output.height = 0;
67 output.is_dense =
true;
73template <
typename Po
intT>
void
80 coefficients->values.resize (4);
81 coefficients->values[0] = coefficients->values[1] = 0;
82 coefficients->values[2] = 1.0;
83 coefficients->values[3] = 0;
90 proj.
filter (*cloud_projected);
95 if (
input_->isOrganized ())
100 searcher_->setInputCloud (cloud_projected);
105 int oii = 0, rii = 0;
107 std::vector<bool> point_is_max (
indices_->size (),
false);
108 std::vector<bool> point_is_visited (
indices_->size (),
false);
122 if (point_is_visited[iii] && !point_is_max[iii])
128 point_is_max[iii] =
true;
129 point_is_visited[iii] =
true;
133 std::vector<float> radius_dists;
134 PointT p = (*cloud_projected)[iii];
135 if (searcher_->radiusSearch (p, radius_, radius_indices, radius_dists) == 0)
137 PCL_WARN (
"[pcl::%s::applyFilter] Searching for neighbors within radius %f failed.\n",
getClassName ().c_str (), radius_);
142 if (radius_indices.size () == 1)
144 point_is_max[iii] =
false;
148 float query_z = (*input_)[iii].z;
149 for (std::size_t k = 1; k < radius_indices.size (); ++k)
151 if ((*
input_)[radius_indices[k]].z > query_z)
154 point_is_max[iii] =
false;
161 if (point_is_max[iii])
163 for (std::size_t k = 1; k < radius_indices.size (); ++k)
165 point_is_visited[radius_indices[k]] =
true;
175 (*removed_indices_)[rii++] = iii;
182 indices[oii++] = iii;
186 indices.resize (oii);
190#define PCL_INSTANTIATE_LocalMaximum(T) template class PCL_EXPORTS pcl::LocalMaximum<T>;
void filter(PointCloud &output)
Calls the filtering method and returns the filtered dataset in output.
bool extract_removed_indices_
Set to true if we want to return the indices of the removed points.
const std::string & getClassName() const
Get a string representation of the name of this class.
IndicesPtr removed_indices_
Indices of the points that are removed.
bool negative_
False = normal filter behavior (default), true = inverted behavior.
void applyFilter(PointCloud &output) override
Downsample a Point Cloud by eliminating points that are locally maximal in z.
void applyFilterIndices(Indices &indices)
Filtered results are indexed by an indices array.
typename FilterIndices< PointT >::PointCloud PointCloud
PointCloudConstPtr input_
The input point cloud dataset.
virtual void setInputCloud(const PointCloudConstPtr &cloud)
Provide a pointer to the input dataset.
IndicesPtr indices_
A pointer to the vector of point indices to use.
shared_ptr< PointCloud< PointT > > Ptr
ProjectInliers uses a model and a set of inlier indices from a PointCloud to project them into a sepa...
void setModelCoefficients(const ModelCoefficientsConstPtr &model)
Provide a pointer to the model coefficients.
void setModelType(int model)
The type of model to use (user given parameter).
search::KdTree is a wrapper class which inherits the pcl::KdTree class for performing search function...
OrganizedNeighbor is a class for optimized nearest neigbhor search in organized point clouds.
void copyPointCloud(const pcl::PointCloud< PointInT > &cloud_in, pcl::PointCloud< PointOutT > &cloud_out)
Copy all the fields from a given point cloud into a new point cloud.
bool isFinite(const PointT &pt)
Tests if the 3D components of a point are all finite param[in] pt point to be tested return true if f...
IndicesAllocator<> Indices
Type used for indices in PCL.
shared_ptr< ::pcl::ModelCoefficients > Ptr