Package inra.ijpb.binary.skeleton
Class ImageJSkeleton
java.lang.Object
inra.ijpb.algo.AlgoStub
inra.ijpb.binary.skeleton.ImageJSkeleton
- All Implemented Interfaces:
Algo
public class ImageJSkeleton extends AlgoStub
Adaptation of the skeletonization code from ImageJ.
- Author:
- dlegland
-
Constructor Summary
Constructors Constructor Description ImageJSkeleton()
Creates a new skeletonizer. -
Method Summary
Modifier and Type Method Description ij.process.ImageProcessor
process(ij.process.ImageProcessor image)
Computes the skeleton of the region within the binary image and returns the result in a new ImageProcessor.Methods inherited from class inra.ijpb.algo.AlgoStub
addAlgoListener, removeAlgoListener
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
ImageJSkeleton
public ImageJSkeleton()Creates a new skeletonizer.
-
-
Method Details
-
process
public ij.process.ImageProcessor process(ij.process.ImageProcessor image)Computes the skeleton of the region within the binary image and returns the result in a new ImageProcessor.- Parameters:
image
- the binary image to process- Returns:
- the result of skeleton computation
-