• Source: Harris corner detector
  • The Harris corner detector is a corner detection operator that is commonly used in computer vision algorithms to extract corners and infer features of an image. It was first introduced by Chris Harris and Mike Stephens in 1988 upon the improvement of Moravec's corner detector. Compared to its predecessor, Harris' corner detector takes the differential of the corner score into account with reference to direction directly, instead of using shifting patches for every 45 degree angles, and has been proved to be more accurate in distinguishing between edges and corners. Since then, it has been improved and adopted in many algorithms to preprocess images for subsequent applications.


    Introduction


    A corner is a point whose local neighborhood stands in two dominant and different edge directions. In other words, a corner can be interpreted as the junction of two edges, where an edge is a sudden change in image brightness. Corners are the important features in the image, and they are generally termed as interest points which are invariant to translation, rotation and illumination. Although corners are only a small percentage of the image, they contain the most important features in restoring image information, and they can be used to minimize the amount of processed data for motion tracking, image stitching, building 2D mosaics, stereo vision, image representation and other related computer vision areas.
    In order to capture the corners from the image, researchers have proposed many different corner detectors including the Kanade-Lucas-Tomasi (KLT) operator and the Harris operator which are most simple, efficient and reliable for use in corner detection. These two popular methodologies are both closely associated with and based on the local structure matrix. Compared to the Kanade-Lucas-Tomasi corner detector, the Harris corner detector provides good repeatability under changing illumination and rotation, and therefore, it is more often used in stereo matching and image database retrieval. Although there still exists drawbacks and limitations, the Harris corner detector is still an important and fundamental technique for many computer vision applications.


    Development of Harris corner detection algorithm


    Without loss of generality, we will assume a grayscale 2-dimensional image is used. Let this image be given by



    I


    {\displaystyle I}

    . Consider taking an image patch



    (
    x
    ,
    y
    )

    W


    {\displaystyle (x,y)\in W}

    (window) and shifting it by



    (
    Δ
    x
    ,
    Δ
    y
    )


    {\displaystyle (\Delta x,\Delta y)}

    . The sum of squared differences (SSD) between these two patches, denoted



    f


    {\displaystyle f}

    , is given by:




    f
    (
    Δ
    x
    ,
    Δ
    y
    )
    =




    (

    x

    k


    ,

    y

    k


    )

    W





    (

    I
    (

    x

    k


    ,

    y

    k


    )

    I
    (

    x

    k


    +
    Δ
    x
    ,

    y

    k


    +
    Δ
    y
    )

    )


    2




    {\displaystyle f(\Delta x,\Delta y)={\underset {(x_{k},y_{k})\in W}{\sum }}\left(I(x_{k},y_{k})-I(x_{k}+\Delta x,y_{k}+\Delta y)\right)^{2}}





    I
    (
    x
    +
    Δ
    x
    ,
    y
    +
    Δ
    y
    )


    {\displaystyle I(x+\Delta x,y+\Delta y)}

    can be approximated by a Taylor expansion. Let




    I

    x




    {\displaystyle I_{x}}

    and




    I

    y




    {\displaystyle I_{y}}

    be the partial derivatives of



    I


    {\displaystyle I}

    , such that




    I
    (
    x
    +
    Δ
    x
    ,
    y
    +
    Δ
    y
    )

    I
    (
    x
    ,
    y
    )
    +

    I

    x


    (
    x
    ,
    y
    )
    Δ
    x
    +

    I

    y


    (
    x
    ,
    y
    )
    Δ
    y


    {\displaystyle I(x+\Delta x,y+\Delta y)\approx I(x,y)+I_{x}(x,y)\Delta x+I_{y}(x,y)\Delta y}


    This produces the approximation




    f
    (
    Δ
    x
    ,
    Δ
    y
    )





    (
    x
    ,
    y
    )

    W





    (


    I

    x


    (
    x
    ,
    y
    )
    Δ
    x
    +

    I

    y


    (
    x
    ,
    y
    )
    Δ
    y

    )


    2


    ,


    {\displaystyle f(\Delta x,\Delta y)\approx {\underset {(x,y)\in W}{\sum }}\left(I_{x}(x,y)\Delta x+I_{y}(x,y)\Delta y\right)^{2},}


    which can be written in matrix form:




    f
    (
    Δ
    x
    ,
    Δ
    y
    )



    (



    Δ
    x


    Δ
    y



    )


    M


    (



    Δ
    x




    Δ
    y



    )


    ,


    {\displaystyle f(\Delta x,\Delta y)\approx {\begin{pmatrix}\Delta x&\Delta y\end{pmatrix}}M{\begin{pmatrix}\Delta x\\\Delta y\end{pmatrix}},}


    where M is the structure tensor,




    M
    =




    (
    x
    ,
    y
    )

    W





    [




    I

    x


    2





    I

    x



    I

    y







    I

    x



    I

    y





    I

    y


    2





    ]


    =


    [







    (
    x
    ,
    y
    )

    W




    I

    x


    2








    (
    x
    ,
    y
    )

    W




    I

    x



    I

    y










    (
    x
    ,
    y
    )

    W




    I

    x



    I

    y








    (
    x
    ,
    y
    )

    W




    I

    y


    2





    ]




    {\displaystyle M={\underset {(x,y)\in W}{\sum }}{\begin{bmatrix}I_{x}^{2}&I_{x}I_{y}\\I_{x}I_{y}&I_{y}^{2}\end{bmatrix}}={\begin{bmatrix}{\underset {(x,y)\in W}{\sum }}I_{x}^{2}&{\underset {(x,y)\in W}{\sum }}I_{x}I_{y}\\{\underset {(x,y)\in W}{\sum }}I_{x}I_{y}&{\underset {(x,y)\in W}{\sum }}I_{y}^{2}\end{bmatrix}}}



    Process of Harris corner detection algorithm


    Commonly, Harris corner detector algorithm can be divided into five steps.

    Color to grayscale
    Spatial derivative calculation
    Structure tensor setup
    Harris response calculation
    Non-maximum suppression


    = Color to grayscale

    =
    If we use Harris corner detector in a color image, the first step is to convert it into a grayscale image, which will enhance the processing speed.
    The value of the gray scale pixel can be computed as a weighted sums of the values R, B and G of the color image,







    C



    {
    R
    ,
    G
    ,
    B
    }



    w

    C



    C


    {\displaystyle \sum _{C\,\in \,\{R,G,B\}}w_{C}\cdot C}

    ,
    where, e.g.,





    w

    R


    =
    0.299
    ,


    w

    G


    =
    0.587
    ,


    w

    B


    =
    1

    (

    w

    R


    +

    w

    G


    )
    =
    0.114.


    {\displaystyle w_{R}=0.299,\ w_{G}=0.587,\ w_{B}=1-(w_{R}+w_{G})=0.114.}



    = Spatial derivative calculation

    =
    Next, we are going to find the derivative with respect to x and the derivative with respect to y,




    I

    x


    (
    x
    ,
    y
    )


    {\displaystyle I_{x}(x,y)}

    and




    I

    y


    (
    x
    ,
    y
    )


    {\displaystyle I_{y}(x,y)}

    .


    = Structure tensor setup

    =
    With




    I

    x


    (
    x
    ,
    y
    )


    {\displaystyle I_{x}(x,y)}

    ,




    I

    y


    (
    x
    ,
    y
    )


    {\displaystyle I_{y}(x,y)}

    , we can construct the structure tensor



    M


    {\displaystyle M}

    .


    = Harris response calculation

    =
    For



    x

    y


    {\displaystyle x\ll y}

    , one has








    x

    y


    x
    +
    y




    =
    x



    1

    1
    +
    x

    /

    y





    x
    .


    {\displaystyle {\tfrac {x\cdot y}{x+y}}=x{\tfrac {1}{1+x/y}}\approx x.}


    In this step, we compute the smallest eigenvalue of the structure tensor using that approximation:





    λ

    min







    λ

    1



    λ

    2




    (

    λ

    1


    +

    λ

    2


    )



    =



    det
    (
    M
    )


    tr

    (
    M
    )





    {\displaystyle \lambda _{\min }\approx {\frac {\lambda _{1}\lambda _{2}}{(\lambda _{1}+\lambda _{2})}}={\frac {\det(M)}{\operatorname {tr} (M)}}}


    with the trace




    t
    r

    (
    M
    )
    =

    m

    11


    +

    m

    22




    {\displaystyle \mathrm {tr} (M)=m_{11}+m_{22}}

    .
    Another commonly used Harris response calculation is shown as below,




    R
    =

    λ

    1



    λ

    2



    k
    (

    λ

    1


    +

    λ

    2



    )

    2


    =
    det
    (
    M
    )

    k
    tr

    (
    M

    )

    2




    {\displaystyle R=\lambda _{1}\lambda _{2}-k(\lambda _{1}+\lambda _{2})^{2}=\det(M)-k\operatorname {tr} (M)^{2}}


    where



    k


    {\displaystyle k}

    is an empirically determined constant;



    k

    [
    0.04
    ,
    0.06
    ]


    {\displaystyle k\in [0.04,0.06]}

    .


    = Non-maximum suppression

    =
    In order to pick up the optimal values to indicate corners, we find the local maxima as corners within the window which is a 3 by 3 filter.


    Improvement


    Harris-Laplace Corner Detector
    Differential Morphological Decomposition Based Corner Detector
    Multi-scale Bilateral Structure Tensor Based Corner Detector


    Applications


    Image Alignment, Stitching and Registration
    2D Mosaics Creation
    3D Scene Modeling and Reconstruction
    Motion Detection
    Object Recognition
    Image Indexing and Content-based Retrieval
    Video Tracking


    See also


    Structure tensor
    Harris affine region detector
    Corner detection
    Feature detection (computer vision)
    Computer vision
    List of computer vision topics


    References




    External links


    "Learn OpenCV by Examples : Harris Corner Detection"
    "Harris Corner Detection - OpenCV Documentation"
    "Harris Corner Detection - OpenCV-Python Tutorials". Archived from the original on 2021-05-07.
    Online Implementation of the Harris Corner Detector - IPOL

Kata Kunci Pencarian: