Interface GeodesicDiameter3D

All Superinterfaces:
Algo
All Known Implementing Classes:
GeodesicDiameter3DFloat

public interface GeodesicDiameter3D
extends Algo
Deprecated.
since 1.3.5, use inra.ijpb.measure.region3d.GeodesicDiameter3D instead
Interface for computing geodesic diameter of a set of 3D binary or labeled particles or regions. The data types for computation and algorithm implementation are left to implementations.

Example of use:


	GeodesicDiameterFloat3D gd3d = new GeodesicDiameter3DFloat(ChamferWeights3D.BORGEFORS);
	ResultsTable table = gd3d.process(inputLabelImage);
	table.show("Geodesic Diameter 3D");
Author:
dlegland
See Also:
GeodesicDiameter3D
  • Method Summary

    Modifier and Type Method Description
    ij.measure.ResultsTable process​(ij.ImageStack labelImage)
    Deprecated.
    computes geodesic diameter for each region of the input image.

    Methods inherited from interface inra.ijpb.algo.Algo

    addAlgoListener, removeAlgoListener
  • Method Details

    • process

      ij.measure.ResultsTable process​(ij.ImageStack 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.