mirror of
https://github.com/wassname/scikit-image.git
synced 2026-08-12 12:30:16 +08:00
Merge pull request #1391 from ahojnnes/eigvals-fix
FIX: Hessian matrix eigvals computation
This commit is contained in:
@@ -288,7 +288,7 @@ def hessian_matrix_eigvals(Hxx, Hxy, Hyy):
|
||||
|
||||
"""
|
||||
|
||||
return _image_orthogonal_matrix22_eigvals(Hyy, Hxy, Hyy)
|
||||
return _image_orthogonal_matrix22_eigvals(Hxx, Hxy, Hyy)
|
||||
|
||||
|
||||
def corner_kitchen_rosenfeld(image, mode='constant', cval=0):
|
||||
|
||||
Reference in New Issue
Block a user