Feature detection (computer vision)

Feature detection (computer vision)

In computer vision and image processing the concept of feature detection refers to methods that aim at computing abstractions of image information and making local decisions at every image point whether there is an image feature of a given type at that point or not. The resulting features will be subsets of the image domain, often in the form of isolated points, continuous curves or connected regions.

Definition of a feature

There is no universal or exact definition of what constitutes a feature, and the exact definition often depends on the problem or the type of application. Given that, a feature is defined as an "interesting" part of an image, and features are used as a starting point for many computer vision algorithms. Since features are used as the starting point and main primitives for subsequent algorithms, the overall algorithm will often only be as good as its feature detector. Consequently, the desirable property for a feature detector is "repeatability": whether or not the same feature will be detected in two or more different images of the same scene.

Feature detection is a low-level image processing operation. That is, it is usually performed as the first operation on an image, and examines every pixel to see if there is a feature present at that pixel. If this is part of a larger algorithm, then the algorithm will typically only examine the image in the region of the features. As a built-in pre-requisite to feature detection, the input image is usually smoothed by a Gaussian kernel in a scale-space representation and one or several feature images are computed, often expressed in terms of local derivative operations.

Occasionally, when feature detection is computationally expensive and there are time constraints, a higher level algorithm may be used to guide the feature detection stage, so that only certain parts of the image are searched for features.

Where many computer vision algorithms use feature detection as the initial step, so as a result, a very large number of feature detectors have been developed. These vary widely in the kinds of feature detected, the computational complexity and the repeatability. At an overview level, these feature detectors can (with some overlap) be divided into the following groups:

Types of image features


= Edges =

Edges are points where there is a boundary (or an edge) between two image regions. In general, an edge can be of almost arbitrary shape, and may include junctions. In practice, edges are usually defined as sets of points in the image which have a strong gradient magnitude. Furthermore, some common algorithms will then chain high gradient points together to form a more complete description of an edge. These algorithms may place some constraints on the shape of an edge.

Locally, edges have a one dimensional structure.


= Corners / interest points =

The terms corners and interest points are used somewhat interchangeably and refer to point-like features in an image, which have a local two dimensional structure. The name "Corner" arose since early algorithms first performed edge detection, and then analysed the edges to find rapid changes in direction (corners). These algorithms were then developed so that explicit edge detection was no longer required, for instance by looking for high levels of curvature in the image gradient. It was then noticed that the so-called corners were also being detected on parts of the image which were not corners in the traditional sense (for instance a small bright spot on a dark background may be detected). These points are frequently known as interest points, but the term "corner" is used by tradition.


= Blobs / regions of interest or interest points =

Blobs provide a complementary description of image structures in terms of regions, as opposed to corners that are more point-like. Nevertheless, blob descriptors often contain a preferred point (a local maximum of an operator response or a center of gravity) which means that many blob detectors may also be regarded as interest point operators. Blob detectors can detect areas in an image which are too smooth to be detected by a corner detector.

Consider shrinking an image and then performing corner detection. The detector will respond to points which are sharp in the shrunk image, but may be smooth in the original image. It is at this point that the difference between a corner detector and a blob detector becomes somewhat vague. To a large extent, this distinction can be remedied by including an appropriate notion of scale. Nevertheless, due to their response properties to different types of image structures at different scales, the LoG and DoH blob detectors are also mentioned in the article on corner detection.


= Ridges =

For elongated objects, the notion of "ridges" is a natural tool. A ridge descriptor computed from a grey-level image can be seen as a generalization of a medial axis. From a practical viewpoint, a ridge can be thought of as a one-dimensional curve that represents an axis of symmetry, and in addition has an attribute of local ridge width associated with each ridge point. Unfortunately, however, it is algorithmically harder to extract ridge features from general classes of grey-level images than edge-, corner- or blob features. Nevertheless, ridge descriptors are frequently used for road extraction in aerial images and for extracting blood vessels in medical images -- see ridge detection.

Feature detectors

Feature extraction

Once features have been detected, a local image patch around the feature can be extracted. This extraction may involve quite considerable amounts of image processing. The result is known as a feature descriptor or feature vector. Among the approaches that are used to feature description, one can mention N-jets and local histograms (see scale-invariant feature transform for one example of a local histogram descriptor). In addition to such attribute information, the feature detection step by itself may also provide complementary attributes, such as the edge orientation and gradient magnitude in edge detection and the polarity and the strength of the blob in blob detection.

References

*Canny, J., A Computational Approach To Edge Detection, IEEE Trans. Pattern Analysis and Machine Intelligence, 8:679-714, 1986. (Canny edge detection)
* cite conference
author=C. Harris and M. Stephens
title=A combined corner and edge detector
booktitle=Proceedings of the 4th Alvey Vision Conference
pages=pages 147--151
year=1988
url=http://www.csse.uwa.edu.au/~pk/research/matlabfns/Spatial/Docs/Harris/A_Combined_Corner_and_Edge_Detector.pdf
(Harris/Plessey corner detection)
*cite journal
author=S. M. Smith and J. M. Brady
title=SUSAN - a new approach to low level image processing
url=http://citeseer.ist.psu.edu/smith95susan.html
journal=International Journal of Computer Vision
volume=23
number=1
pages=45–78
month=May
year=1997
doi=10.1023/A:1007963824710
(The SUSAN corner detector)
* cite conference
author=J. Shi and C. Tomasi
title=Good Features to Track,
publisher=Springer
month=June
booktitle=9th IEEE Conference on Computer Vision and Pattern Recognition
year=1994
url=http://citeseer.ist.psu.edu/shi94good.html
(The Shi and Tomasi corner detector)
*cite journal
author=M. Trajkovic and M. Hedley
title=Fast corner detection
journal=Image and Vision Computing
volume = 16
number = 2
pages = 75–87
year = 1998
doi=10.1016/S0262-8856(97)00056-5
(The FAST corner detector)
* cite journal
author=T. Lindeberg
title=Feature detection with automatic scale selection
journal=International Journal of Computer Vision
year=1998
volume=30
issue=2
pages=pp 77--116
url=http://www.nada.kth.se/cvap/abstracts/cvap198.html
format=abstract
(Laplacian and determinant of Hessian blob detection as well as automatic scale selection)
* cite journal
author=D. Lowe
title=Distinctive Image Features from Scale-Invariant Keypoints
journal=International Journal of Computer Vision
year=2004
url=http://citeseer.ist.psu.edu/654168.html
doi=10.1023/B:VISI.0000029664.99615.94
volume=60
pages=91
(DOG blob detection with automatic scale selection)
*cite conference
author=J. Matas, O. Chum, M. Urban and T. Pajdla
title=Robust wide baseline stereo from maximally stable extremum regions
booktitle=British Machine Vision Conference
year=2002
pages=pp 384-393
url=http://cmp.felk.cvut.cz/~matas/papers/matas-bmvc02.pdf
(The MSER blob detector)
* cite journal
author=T. Lindeberg
title=Detecting Salient Blob-Like Image Structures and Their Scales with a Scale-Space Primal Sketch: A Method for Focus-of-Attention
journal=International Journal of Computer Vision
year=1993
volume=11
issue=3
pages=pp 283--318
url=http://www.nada.kth.se/~tony/abstracts/Lin92-IJCV.html
doi=10.1007/BF01469346
format=abstract
(Grey-level blob detection and scale-space blobs)
*R. Haralick, "Ridges and Valleys on Digital Images," Computer Vision, Graphics, and Image Processing vol. 22, no. 10, pp. 28-38, Apr. 1983. (Ridge detection using facet model)
*J. L. Crowley and A. C. Parker, "A Representation for Shape Based on Peaks and Ridges in the Difference of Low Pass Transform", IEEE Transactions on PAMI, PAMI 6 (2), pp 156-170, March 1984. (Ridge detection based on DOGs)
*D. Eberly , R. Gardner , B. Morse , S. Pizer , C. Scharlach, Ridges for image analysis, Journal of Mathematical Imaging and Vision, v.4 n.4, p.353-373, Dec. 1994. (Fixed scale ridge detection)
* cite journal
author=T. Lindeberg
title=Edge detection and ridge detection with automatic scale selection
journal=International Journal of Computer Vision
year=1998
volume=30
issue=2
pages=pp 117--154
url=http://www.nada.kth.se/cvap/abstracts/cvap191.html
doi=10.1023/A:1008097225773
format=abstract
(Ridge detection with automatic scale selection)

See also

* Edge detection
* Corner detection
* Blob detection
* Ridge detection
* Interest point detection
* Scale-space
* Feature detection
* Feature extraction
* Feature (Computer vision)
* Computer vision


Wikimedia Foundation. 2010.

Игры ⚽ Нужна курсовая?

Look at other dictionaries:

  • Feature (computer vision) — In computer vision and image processing the concept of feature is used to denote a piece of information which is relevant for solving the computational task related to a certain application. More specifically, features can refer to* the result of …   Wikipedia

  • Feature detection — The notion of feature detection is used with somewhat different but nevertheless related meanings in different areas that deal with automated interpretation of sensory or measurement data.In the area of computer vision, feature detection usually… …   Wikipedia

  • Object recognition (computer vision) — Feature detection Output of a typical corner detection algorithm …   Wikipedia

  • Computer vision — is the field concerned with automated imaging and automated computer based processing of images to extract and interpret information. It is the science and technology of machines that see. Here see means the machine is able to extract information …   Wikipedia

  • Détection de zones d'intérêt — En vision par ordinateur et en traitement d images, la détection de zones d intérêt d une image numérique (feature detection en anglais) consiste à mettre en évidence des zones de cette image jugées « intéressantes » pour l analyse, c… …   Wikipédia en Français

  • Bag of words model in computer vision — This is an article introducing the Bag of words model (BoW) in computer vision, especially for object categorization. From now, the BoW model refers to the BoW model in computer vision unless explicitly declared.Before introducing the BoW model,… …   Wikipedia

  • List of computer vision topics — This is a list of computer vision and image processing topics Contents 1 Image enhancement 2 Transformations 3 Filtering, Fourier and wavelet transforms and image compression …   Wikipedia

  • Triangulation (computer vision) — In computer vision triangulation refers to the process of determining a point in 3D space given its projections onto two, or more, images. In order to solve this problem it is necessary to know the parameters of the camera projection function… …   Wikipedia

  • Corner detection — Feature detection Output of a typical corner detection algorithm …   Wikipedia

  • Blob detection — Feature detection Output of a typical corner detection algorithm …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”