Skip to content

Commit

Permalink
Addressing PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
chambbj committed May 22, 2020
1 parent f699ada commit b04b6e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions filters/private/Segmentation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ std::ostream& operator<<(std::ostream& out, const PointClasses& classes);
\param[in] min_points the minimum number of points in a cluster.
\param[in] max_points the maximum number of points in a cluster.
\param[in] tolerance the tolerance for adding points to a cluster.
\returns a vector of clusters (themselves vectors of PointIds).
\returns a deque of clusters (themselves vectors of PointIds).
*/
template <class T>
template <class KDINDEX>
PDAL_DLL std::deque<PointIdList> extractClusters(PointView& view, uint64_t min_points,
uint64_t max_points, double tolerance)
{
// Index the incoming PointView for subsequent radius searches.
T kdi(view);
KDINDEX kdi(view);
kdi.build();

// Create variables to track PointIds that have already been added to
Expand Down

0 comments on commit b04b6e4

Please sign in to comment.