CornerDetector:

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.
--------------------------------------------------------------------------

Children:

Common: CommonData/SwooshWatermark
Common: General/CellToMat
Common: General/MatToCell
Common: General/Watermark
Common: Graphics/ColorMapGrayScale
Common: Graphics/NewFig
Common: Graphics/Plot2D
Common: Graphics/PltStyle
Imaging: ImageData/SCImage
Imaging: ImageMatching/GaussianDerivative
Imaging: ImageProcessing/GaussianKernal
Imaging: ImageProcessing/Imager
Imaging: Utilities/ReadImage

Back to the Imaging Module page