Package inra.ijpb.binary.geodesic
Interface GeodesicDistanceTransform
- All Superinterfaces:
Algo
- All Known Implementing Classes:
GeodesicDistanceTransformFloat
,GeodesicDistanceTransformFloat5x5
,GeodesicDistanceTransformFloatHybrid
,GeodesicDistanceTransformShort
,GeodesicDistanceTransformShort5x5
,GeodesicDistanceTransformShortHybrid
public interface GeodesicDistanceTransform extends Algo
Interface for computing Geodesic distance transforms (or geodesic distance
maps) from binary images.
- Author:
- David Legland
- See Also:
DistanceTransform
-
Method Summary
Modifier and Type Method Description ij.process.ImageProcessor
geodesicDistanceMap(ij.process.ImageProcessor marker, ij.process.ImageProcessor mask)
Computes the geodesic distance transform (or geodesic distance map) of a binary image of marker, constrained to a binary mask.Methods inherited from interface inra.ijpb.algo.Algo
addAlgoListener, removeAlgoListener
-
Method Details
-
geodesicDistanceMap
ij.process.ImageProcessor geodesicDistanceMap(ij.process.ImageProcessor marker, ij.process.ImageProcessor mask)Computes the geodesic distance transform (or geodesic distance map) of a binary image of marker, constrained to a binary mask.- Parameters:
marker
- the binary image of markermask
- the binary image of mask- Returns:
- the geodesic distance map in a new ImageProcessor
-