Package qupath.opencv.tools
Class MultiscaleFeatures.Hessian3D
java.lang.Object
qupath.opencv.tools.MultiscaleFeatures.Hessian3D
- All Implemented Interfaces:
- AutoCloseable,- MultiscaleFeatures.Hessian
- Enclosing class:
- MultiscaleFeatures
public static class MultiscaleFeatures.Hessian3D
extends Object
implements MultiscaleFeatures.Hessian
Hessian matrix values for 3D images (z-stacks).
- 
Method SummaryModifier and TypeMethodDescriptionvoidclose()Get 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).
- 
Method Details- 
getLaplacianDescription copied from interface:MultiscaleFeatures.HessianGet Laplacian of Gaussian image (calculated by summation without requiring eigenvalues).- Specified by:
- getLaplacianin interface- MultiscaleFeatures.Hessian
- Returns:
 
- 
getEigenvectorsDescription copied from interface:MultiscaleFeatures.HessianGet the eigenvectors, returned in the same order as the eigenvalues. Vector elements are stored along the 'channels' dimension.- Specified by:
- getEigenvectorsin interface- MultiscaleFeatures.Hessian
- Parameters:
- sortByAbs- if true, return eigenvectors corresponding to eigenvalues sorted by absolute value
- Returns:
 
- 
getEigenvaluesDescription copied from interface:MultiscaleFeatures.HessianGet the eigenvalues, ranked from highest to lowest.- Specified by:
- getEigenvaluesin interface- MultiscaleFeatures.Hessian
- Parameters:
- sortByAbs- if true, return eigenvalues sorted by absolute value; otherwise return sorted by value
- Returns:
 
- 
getDeterminantDescription copied from interface:MultiscaleFeatures.HessianGet the determinant for each pixel.- Specified by:
- getDeterminantin interface- MultiscaleFeatures.Hessian
- Returns:
 
- 
closepublic void close()- Specified by:
- closein interface- AutoCloseable
 
 
-