Package qupath.opencv.tools
Interface MultiscaleFeatures.Hessian
- All Superinterfaces:
- AutoCloseable
- All Known Implementing Classes:
- MultiscaleFeatures.Hessian2D,- MultiscaleFeatures.Hessian3D
- Enclosing class:
- MultiscaleFeatures
Helper class for storing and computing pixel features from Hessian matrices.
- 
Method SummaryModifier and TypeMethodDescriptionGet the determinant for each pixel.getEigenvalues(boolean sortByAbs) Get the eigenvalues, ranked from highest to lowest.getEigenvectors(boolean sortByAbs) Get the eigenvectors, returned in the same order as the eigenvalues.Get Laplacian of Gaussian image (calculated by summation without requiring eigenvalues).Methods inherited from interface java.lang.AutoCloseableclose
- 
Method Details- 
getLaplacianMat getLaplacian()Get Laplacian of Gaussian image (calculated by summation without requiring eigenvalues).- Returns:
 
- 
getDeterminantMat getDeterminant()Get the determinant for each pixel.- Returns:
 
- 
getEigenvaluesGet the eigenvalues, ranked from highest to lowest.- Parameters:
- sortByAbs- if true, return eigenvalues sorted by absolute value; otherwise return sorted by value
- Returns:
 
- 
getEigenvectorsGet the eigenvectors, returned in the same order as the eigenvalues. Vector elements are stored along the 'channels' dimension.- Parameters:
- sortByAbs- if true, return eigenvectors corresponding to eigenvalues sorted by absolute value
- Returns:
 
 
-