Class KeepHighestMetaDataValue
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.data.overlappingobjectremoval.AbstractOverlappingObjectRemoval
-
- adams.data.overlappingobjectremoval.KeepHighestMetaDataValue
-
- All Implemented Interfaces:
Destroyable
,GlobalInfoSupporter
,LoggingLevelHandler
,LoggingSupporter
,OptionHandler
,SizeOfHandler
,OverlappingObjectRemoval
,Serializable
public class KeepHighestMetaDataValue extends AbstractOverlappingObjectRemoval
Keeps object with the highest (numeric) meta-data value.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
m_ScoreKey
the score meta-data key.-
Fields inherited from class adams.core.option.AbstractOptionHandler
m_OptionManager
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description KeepHighestMetaDataValue()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
defineOptions()
Adds options to the internal list of options.String
getScoreKey()
Returns the key for the score in the meta-data.String
globalInfo()
Returns a string describing the object.String
labelKeyTipText()
Returns the tip text for this property.LocatedObjects
removeOverlaps(LocatedObjects objects, Map<LocatedObject,Map<LocatedObject,Double>> matches)
Removes overlapping image objects.void
setScoreKey(String value)
Sets the key for the score in the meta-data.-
Methods inherited from class adams.data.overlappingobjectremoval.AbstractOverlappingObjectRemoval
remove
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, initialize, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
-
-
-
Field Detail
-
m_ScoreKey
protected String m_ScoreKey
the score meta-data key.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfo
in interfaceGlobalInfoSupporter
- Specified by:
globalInfo
in classAbstractOptionHandler
- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptions
in interfaceOptionHandler
- Overrides:
defineOptions
in classAbstractOptionHandler
-
setScoreKey
public void setScoreKey(String value)
Sets the key for the score in the meta-data.- Parameters:
value
- the key
-
getScoreKey
public String getScoreKey()
Returns the key for the score in the meta-data.- Returns:
- the key
-
labelKeyTipText
public String labelKeyTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
removeOverlaps
public LocatedObjects removeOverlaps(LocatedObjects objects, Map<LocatedObject,Map<LocatedObject,Double>> matches)
Removes overlapping image objects.- Specified by:
removeOverlaps
in interfaceOverlappingObjectRemoval
- Specified by:
removeOverlaps
in classAbstractOverlappingObjectRemoval
- Parameters:
objects
- the objects to clean upmatches
- the matches that were determined by an algorithm, used as basis for removal- Returns:
- the updated objects
-
-