Commit 9eaac610 authored by howtobeahacker's avatar howtobeahacker

correct covariation matrix formula in Harris corner detector

parent 83ace8d5
...@@ -66,7 +66,7 @@ For every pixel ...@@ -66,7 +66,7 @@ For every pixel
.. math:: .. math::
M = \begin{bmatrix} \sum _{S(p)}(dI/dx)^2 & \sum _{S(p)}(dI/dx dI/dy)^2 \\ \sum _{S(p)}(dI/dx dI/dy)^2 & \sum _{S(p)}(dI/dy)^2 \end{bmatrix} M = \begin{bmatrix} \sum _{S(p)}(dI/dx)^2 & \sum _{S(p)}(dI/dx dI/dy) \\ \sum _{S(p)}(dI/dx dI/dy) & \sum _{S(p)}(dI/dy)^2 \end{bmatrix}
where the derivatives are computed using the where the derivatives are computed using the
:ocv:func:`Sobel` operator. :ocv:func:`Sobel` operator.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment