Add functions to compute eigen values of structure tensor and hessian matrix

This commit is contained in:
Johannes Schönberger
2013-11-29 20:42:05 +01:00
parent 3e2ca1493e
commit aee31e91a7
2 changed files with 85 additions and 2 deletions
+5 -2
View File
@@ -5,7 +5,8 @@ from .peak import peak_local_max
from .corner import (corner_kitchen_rosenfeld, corner_harris,
corner_shi_tomasi, corner_foerstner, corner_subpix,
corner_peaks, corner_fast, structure_tensor,
hessian_matrix)
structure_tensor_eigvals, hessian_matrix,
hessian_matrix_eigvals)
from .corner_cy import corner_moravec, corner_orientations
from .template import match_template
from ._brief import brief, match_keypoints_brief
@@ -33,4 +34,6 @@ __all__ = ['daisy',
'corner_fast',
'corner_orientations',
'structure_tensor',
'hessian_matrix']
'structure_tensor_eigvals',
'hessian_matrix',
'hessian_matrix_eigvals']