[ VIGRA Homepage | Function Index | Class Index | Namespaces | File List | Main Page ]
![]() |
Corner Detection | ![]() |
Functions | |
template<... > | |
void | beaudetCornerDetector (...) |
Find corners in an image (4). More... | |
template<... > | |
void | cornerResponseFunction (...) |
Find corners in an image (1). More... | |
template<... > | |
void | foerstnerCornerDetector (...) |
Find corners in an image (2). More... | |
template<... > | |
void | rohrCornerDetector (...) |
Find corners in an image (3). More... | |
Measure the 'cornerness' at each pixel. Note: The Kitchen-Rosenfeld detector is not implemented because of its inferior performance. The SUSAN detector is missing because it's patented.
void vigra::cornerResponseFunction | ( | ... | ) |
Find corners in an image (1).
This algorithm implements the so called 'corner response function' to measure the 'cornerness' of each pixel in the image, according to [C.G. Harris and M.J. Stevens: "A Combined Corner and Edge Detector", Proc. of 4th Alvey Vision Conference, 1988]. Several studies have found this to be a very robust corner detector, although it moves the corners somewhat into one region, depending on the scale.
The algorithm first determines the structure tensor at each pixel by calling structureTensor(). Then the entries of the structure tensor are combined as
The local maxima of the corner response denote the corners in the gray level image.
The source value type must be a linear algebra, i.e. addition, subtraction, and multiplication with itself, multiplication with doubles and NumericTraits must be defined.
Declarations:
pass 2D array views:
Usage:
#include <vigra/cornerdetection.hxx>
Namespace: vigra
void vigra::foerstnerCornerDetector | ( | ... | ) |
Find corners in an image (2).
This algorithm implements the so called 'Foerstner Corner Detector' to measure the 'cornerness' of each pixel in the image, according to [W. Förstner: "A feature based correspondence algorithms for image matching", Intl. Arch. Photogrammetry and Remote Sensing, vol. 24, pp 160-166, 1986]. It is also known as the "Plessey Detector" by Harris. However, it should not be confused with the "\link cornerResponseFunction Corner Response Function\endlink ", another detector invented by Harris.
The algorithm first determines the structure tensor at each pixel by calling structureTensor(), where the given scale is used for both the inner and outer scales. Then the entries of the structure tensor are combined as
The local maxima of the corner strength denote the corners in the gray level image. Its performance is similar to the cornerResponseFunction().
The source value type must be a division algebra, i.e. addition, subtraction, multiplication, and division with itself, multiplication with doubles and NumericTraits must be defined.
Declarations:
pass 2D array views:
Usage:
#include <vigra/cornerdetection.hxx>
Namespace: vigra
void vigra::rohrCornerDetector | ( | ... | ) |
Find corners in an image (3).
This algorithm implements yet another structure tensor-based corner detector, according to [K. Rohr: "Untersuchung von grauwertabhängigen Transformationen zur Ermittlung der optischen Flusses in Bildfolgen", Diploma thesis, Inst. für Nachrichtensysteme, Univ. Karlsruhe, 1987, see also K. Rohr: "Modelling and Identification of Characteristic Intensity Variations", Image and Vision Computing 10:2 (1992) 66-76 and K. Rohr: "Localization Properties of Direct Corner Detectors", J. of Mathematical Imaging and Vision 4:2 (1994) 139-150].
The algorithm first determines the structure tensor at each pixel by calling structureTensor(), where the given scale is used for both the inner and outer scales. Then the entries of the structure tensor are combined as
The local maxima of the corner strength denote the corners in the gray level image. Its performance is similar to the cornerResponseFunction().
The source value type must be a linear algebra, i.e. addition, subtraction, and multiplication with itself, multiplication with doubles and NumericTraits must be defined.
Declarations:
pass 2D array views:
Usage:
#include <vigra/cornerdetection.hxx>
Namespace: vigra
void vigra::beaudetCornerDetector | ( | ... | ) |
Find corners in an image (4).
This algorithm implements a corner detector according to [P.R. Beaudet: "Rotationally Invariant Image Operators", Proc. Intl. Joint Conf. on Pattern Recognition, Kyoto, Japan, 1978, pp. 579-583].
The algorithm calculates the corner strength as the negative determinant of the Hessian Matrix. The local maxima of the corner strength denote the corners in the gray level image.
The source value type must be a linear algebra, i.e. addition, subtraction, and multiplication with itself, multiplication with doubles and NumericTraits must be defined.
Declarations:
pass 2D array views:
Usage:
#include <vigra/cornerdetection.hxx>
Namespace: vigra
© Ullrich Köthe (ullrich.koethe@iwr.uni-heidelberg.de) |
html generated using doxygen and Python
|