程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Digital image processing and python implementation scikit image image feature (II)

編輯:Python

List of articles

    • 7、Hessian The eigenvalues of a matrix
    • 8、 Directional gradient histogram (Histogram of Oriented Gradients ,HOG)
    • 9、 Local binary mode (Local Binary Patterns,LBP)
    • 10、 Feature tracing brute force matching
    • 11、 Template matching
    • 12、 Multi block local binary mode (Multi-block local binary pattern )

7、Hessian The eigenvalues of a matrix

feature Modular hessian_matrix_eigvals Used to calculate Hessian The eigenvalues of a matrix . In the calculation Hessian Before the eigenvalue of the matrix , First, you need to convert the matrix into Hessian matrix .Hessian The form of the matrix is as follows :

H = [Hrr Hrc]
[Hrc Hcc]

You can call hessian_matrix Function to implement .

function hessian_matrix_eigvals The prototype is as follows :

skimage.feature.hessian_matrix_eigvals(H_elems)

</

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved