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
FieldsModifier and TypeFieldDescriptionbooleanDoes it require that the found polygons be convex?booleanIf true then the polyline forms a loops.intMaximum number of sides.intMinimum number of sides. -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods 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
-