Interface IPolygonModifier
-
- All Known Implementing Classes:
AbstractPolygonModifier,borderModifier,GranularityModifier,MeasurementErrorModifier
public interface IPolygonModifierImplements the polygon modifier interface. It provides basic functions for modifying a set of polygons.- Author:
- Axel-C. Ngonga Ngomo (ngonga@informatik.uni-leipzig.de)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Return name of modifier classPolygonmodify(Polygon polygon, double threshold)Modifies a polygon given a threshold.Set<Polygon>modifySet(Set<Polygon> dataset, double threshold)Modifies a set of polygons give a threshold
-
-
-
Method Detail
-
modifySet
Set<Polygon> modifySet(Set<Polygon> dataset, double threshold)
Modifies a set of polygons give a threshold- Parameters:
dataset- , set of polygonsthreshold- , the threshold- Returns:
- set of polygons, modified
-
modify
Polygon modify(Polygon polygon, double threshold)
Modifies a polygon given a threshold.- Parameters:
polygon- to be modifiedthreshold- of modification- Returns:
- modified polygon
-
getName
String getName()
Return name of modifier class- Returns:
- name of modifier, as string
-
-