Package adams.data.io.input
Interface ImageSegmentationAnnotationReaderWithLayerNames
-
- All Superinterfaces:
Destroyable
,FileFormatHandler
,ImageSegmentationAnnotationReader
,OptionHandler
- All Known Implementing Classes:
AbstractCustomPNGAnnotationImageSegmentationReader
,AbstractPNGAnnotationImageSegmentationReader
,BlueChannelImageSegmentationReader
,GrayscaleImageSegmentationReader
,IndexedPNGImageSegmentationReader
public interface ImageSegmentationAnnotationReaderWithLayerNames extends ImageSegmentationAnnotationReader
Interface for image segmentation readers that make use of layer names.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BaseString[]
getLayerNames()
Returns the names for the layers to use.String
layerNamesTipText()
Returns the tip text for this property.void
setLayerNames(BaseString[] value)
Sets the names for the layers to use.-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.io.FileFormatHandler
getDefaultFormatExtension, getFormatDescription, getFormatExtensions
-
Methods inherited from interface adams.data.io.input.ImageSegmentationAnnotationReader
getCorrespondingWriter, read
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
-
-
-
Method Detail
-
setLayerNames
void setLayerNames(BaseString[] value)
Sets the names for the layers to use.- Parameters:
value
- the names
-
getLayerNames
BaseString[] getLayerNames()
Returns the names for the layers to use.- Returns:
- the names
-
layerNamesTipText
String layerNamesTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-