Loading [MathJax]/extensions/TeX/AMSsymbols.js
 
CGAL 6.1 - dD Frechet Distance
All Classes Namespaces Files Functions Variables Typedefs Enumerations Friends Modules Pages
Loading...
Searching...
No Matches
CGAL::Frechet_distance::Neighbor_search< PointRange, Traits > Class Template Reference

#include <CGAL/Frechet_distance/Neighbor_search.h>

Definition

template<class PointRange, class Traits>
class CGAL::Frechet_distance::Neighbor_search< PointRange, Traits >

A data structure to store polylines with a function that enables to find those polylines which are closer than a distance bound to a query polyline.

Template Parameters
Traitsa model of FrechetDistanceTraits
PointRangea model of the concept RandomAccessContainer with Traits::Point_d as value type.
Examples
Frechet_distance/Frechet_DS_2.cpp, Frechet_distance/Frechet_DS_3.cpp, Frechet_distance/Frechet_DS_d.cpp, and Frechet_distance/parallel_Frechet_DS_2.cpp.

Public Types

using Point = Traits::Point_d
 

Public Member Functions

template<typename PolylineRange >
 Neighbor_search (const PolylineRange &polylines)
 constructs a neighbor search data structure for polylines
 
template<typename PolylineRange , typename ConcurrencyTag >
 Neighbor_search (const PolylineRange &polylines, ConcurrencyTag)
 constructs a neighbor search data structure for polylines
 
std::vector< std::size_t > get_close_curves (const PointRange &query, double distance)
 returns the indices of the inserted polylines that are closer than distance to the polyline query.
 

Constructor & Destructor Documentation

◆ Neighbor_search() [1/2]

template<class PointRange , class Traits >
template<typename PolylineRange >
CGAL::Frechet_distance::Neighbor_search< PointRange, Traits >::Neighbor_search ( const PolylineRange &  polylines)

constructs a neighbor search data structure for polylines

Template Parameters
PolylineRangemust be a model of RandomAccessRange with value type PointRange

◆ Neighbor_search() [2/2]

template<class PointRange , class Traits >
template<typename PolylineRange , typename ConcurrencyTag >
CGAL::Frechet_distance::Neighbor_search< PointRange, Traits >::Neighbor_search ( const PolylineRange &  polylines,
ConcurrencyTag   
)

constructs a neighbor search data structure for polylines

Template Parameters
PolylineRangemust be a model of RandomAccessRange with value type PointRange
ConcurrencyTagenables sequential versus parallel construction. Possible values are Sequential_tag, Parallel_tag, and Parallel_if_available_tag.