File: kdtree.doxy

package info (click to toggle)
pcl 1.11.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 142,936 kB
  • sloc: cpp: 512,326; xml: 28,792; ansic: 13,656; python: 526; lisp: 93; makefile: 74; sh: 27
file content (21 lines) | stat: -rw-r--r-- 1,004 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
  \addtogroup kdtree Module kdtree

  \section secKDtreePresentation Overview 

  The <b>pcl_kdtree</b> library provides the kd-tree data-structure, using
  <a href="http://www.cs.ubc.ca/research/flann/</a>,
  that allows for fast <a href="http://en.wikipedia.org/wiki/Nearest_neighbor_search">nearest neighbor searches</a>.

  A <a href="http://en.wikipedia.org/wiki/Kd-tree">Kd-tree</a> (<i>k</i>-dimensional tree) is a space-partitioning data 
  structure that stores a set of k-dimensional points in a tree structure that enables efficient range searches and 
  nearest neighbor searches. Nearest neighbor searches are a core operation when working with point cloud data and can 
  be used to find correspondences between groups of points or feature descriptors or to define the local neighborhood 
  around a point or points.

  \image html http://www.pointclouds.org/assets/images/contents/documentation/kdtree_mug.png
	
	\section secKDtreeRequirements Requirements
	- \ref common "common"

*/