Interface | Description |
---|---|
Segmenter<I extends Image<?,I>> |
The Segmenter interface defines an object capable of segmenting an image into
PixelSet s (or subclasses thereof). |
Class | Description |
---|---|
ConnectedThresholdSegmenter |
Simple wrapper to make thresholding algorithms into
Segmenter s by
applying the thresholding operation and then applying connected component
labeling. |
FelzenszwalbHuttenlocherSegmenter<I extends Image<?,I> & SinglebandImageProcessor.Processable<Float,FImage,I>> |
Implementation of the segmentation algorithm described in:
Efficient Graph-Based Image Segmentation
Pedro F.
|
KMColourSegmenter |
Simple image segmentation from grouping colours with k-means.
|
KMSpatialColourSegmenter |
Simple image segmentation from grouping colours with k-means, and also
incorporating a spatial aspect based on pixel location.
|
SegmentationUtilities |
Some utility functions for dealing with segmented output
|
ThresholdSegmenter |
Simple wrapper to make thresholding algorithms into
Segmenter s by
applying the thresholding operation and then gathering the pixel sets
belonging to each segment. |