Package inra.ijpb.binary.geodesic
Interface GeodesicDiameter
- All Superinterfaces:
Algo
- All Known Implementing Classes:
GeodesicDiameterFloat
,GeodesicDiameterShort
@Deprecated public interface GeodesicDiameter extends Algo
Deprecated.
since 1.3.5, use inra.ijpb.measure.region2d.GeodesicDiameter instead
Interface for computing geodesic diameter of a set of binary or labeled
particles or regions. The data types for computation and algorithm
implementation are left to implementations.
Example of use:
ChamferWeights weights = ChamferWeights.CHESSKNIGHT;
GeodesicDiameter gd = new GeodesicDiameterFloat(weights);
ResultsTable table = gd.analyseImage(inputLabelImage);
table.show("Geodesic Diameter");
- Author:
- dlegland
- See Also:
GeodesicDiameter
-
Method Summary
Modifier and Type Method Description ij.measure.ResultsTable
analyzeImage(ij.process.ImageProcessor labelImage)
Deprecated.computes geodesic diameter for each region of the input image.Methods inherited from interface inra.ijpb.algo.Algo
addAlgoListener, removeAlgoListener
-
Method Details
-
analyzeImage
ij.measure.ResultsTable analyzeImage(ij.process.ImageProcessor labelImage)Deprecated.computes geodesic diameter for each region of the input image.- Parameters:
labelImage
- the label image containing regions.- Returns:
- a ResultsTable containing the geodesic diameter of each region.
-