File: keypoints.doxy

package info (click to toggle)
pcl 1.9.1%2Bdfsg1-10
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 141,836 kB
  • sloc: cpp: 521,679; xml: 28,792; ansic: 13,915; python: 538; lisp: 93; makefile: 77; sh: 27
file content (23 lines) | stat: -rw-r--r-- 1,044 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
  \addtogroup keypoints Module keypoints

  \section secKeypointsPresentation Overview

  The <b>pcl_keypoints</b> library contains implementations of two point cloud keypoint detection algorithms.
  Keypoints (also referred to as <a href="http://en.wikipedia.org/wiki/Interest_point_detection">interest points</a>) 
  are points in an image or point cloud that are stable, distinctive, and can be identified using a well-defined 
  detection criterion.  Typically, the number of interest points in a point cloud will be much smaller than the total
  number of points in the cloud, and when used in combination with local feature descriptors at each keypoint, the 
  keypoints and descriptors can be used to form a compact&mdash;yet descriptive&mdash;representation of the original 
  data.

  \section secKeypointsRequirements Requirements
  - \ref common "common"
  - \ref search "search"
  - \ref kdtree "kdtree"
  - \ref octree "octree"
  - \ref pcl::RangeImage "range_image"
  - \ref features "features"
  - \ref filters "filters"

*/