Package adams.data.objectoverlap
Interface OptionalBoundingBoxFallbackSupporter
-
- All Superinterfaces:
BoundingBoxFallbackSupporter
,Destroyable
,OptionHandler
- All Known Implementing Classes:
FilledPolygon
,IntersectOverUnionRatio
,PolygonBased
,PolygonOutline
,PolygonVertices
public interface OptionalBoundingBoxFallbackSupporter extends BoundingBoxFallbackSupporter
Interface for classes that can (optionally) fall back on a bbox when the polygon is too small in relation to the bbox.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
fallbackTipText()
Returns the tip text for this property.boolean
getFallback()
Returns whether to fall back on the bounding box if no polygon available.void
setFallback(boolean value)
Sets whether to fall back on the bounding box if no polygon available.-
Methods inherited from interface adams.data.objectoverlap.BoundingBoxFallbackSupporter
boundingBoxFallbackRatioTipText, getBoundingBoxFallbackRatio, setBoundingBoxFallbackRatio
-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
-
-
-
Method Detail
-
setFallback
void setFallback(boolean value)
Sets whether to fall back on the bounding box if no polygon available.- Parameters:
value
- true if to use
-
getFallback
boolean getFallback()
Returns whether to fall back on the bounding box if no polygon available.- Returns:
- true if to use
-
fallbackTipText
String fallbackTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-