Skip to content

Commit

Permalink
correct covariation matrix formula in Harris corner detector
Browse files Browse the repository at this point in the history
  • Loading branch information
antran89 committed Jun 3, 2015
1 parent 83ace8d commit 9eaac61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/imgproc/doc/feature_detection.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ For every pixel

.. 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
:ocv:func:`Sobel` operator.
Expand Down

0 comments on commit 9eaac61

Please sign in to comment.