Path: Imaging/ImageMatching
% Corner detector.
n is the dimension of the region. thresh is the eigenvalue
threshold.
The corner output is [row start, row end, col start col end]
--------------------------------------------------------------------------
Form:
CornerDetector;
[iC, coord] = CornerDetector( dX, dY, n )
[iC, coord] = CornerDetector( dX, dY, n, thresh )
--------------------------------------------------------------------------
------
Inputs
------
dX (:,:) Derivative in the x direction
dY (:,:) Derivative in the y direction
n (1,1) Neighborhood size
thresh (1,1) Threshold
-------
Outputs
-------
iC (:,:) Corner image
c (:,:) Corner pixels
--------------------------------------------------------------------------
Reference: Trucco, E. and A. Verri, "Introductory Techniques for 3-D
Computer Vision, Prentice-Hall, 1998, p. 83-85.
--------------------------------------------------------------------------
Imaging: ImageMatching/GaussianDerivative Imaging: ImageProcessing/Imager Imaging: Utilities/ReadImage
Back to the Imaging Module page