Package boofcv.abst.shapes.polyline
Class BaseConfigPolyline
java.lang.Object
boofcv.abst.shapes.polyline.BaseConfigPolyline
- All Implemented Interfaces:
Configuration
,Serializable
- Direct Known Subclasses:
ConfigPolylineSplitMerge
,ConfigSplitMergeLineFit
Common class for all polyline algorithms. All variables here can also be set using the
PointsToPolyline
interface.- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionboolean
Does it require that the found polygons be convex?boolean
If true then the polyline forms a loops.int
Maximum number of sides.int
Minimum number of sides. -
Constructor Summary
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface boofcv.struct.Configuration
checkValidity, serializeActiveFields, serializeInitialize
-
Field Details
-
loops
public boolean loopsIf true then the polyline forms a loops. Otherwise the end points are disconnected from each other. -
minimumSides
public int minimumSidesMinimum number of sides. Inclusive -
maximumSides
public int maximumSidesMaximum number of sides. Inclusive -
convex
public boolean convexDoes it require that the found polygons be convex?
-
-
Constructor Details
-
BaseConfigPolyline
public BaseConfigPolyline()
-
-
Method Details
-
setTo
-