Class BaseConfigPolyline

java.lang.Object
boofcv.abst.shapes.polyline.BaseConfigPolyline
All Implemented Interfaces:
Configuration, Serializable
Direct Known Subclasses:
ConfigPolylineSplitMerge, ConfigSplitMergeLineFit

public abstract class BaseConfigPolyline extends Object implements Configuration
Common class for all polyline algorithms. All variables here can also be set using the PointsToPolyline interface.
See Also:
  • Field Details

    • loops

      public boolean loops
      If true then the polyline forms a loops. Otherwise the end points are disconnected from each other.
    • minimumSides

      public int minimumSides
      Minimum number of sides. Inclusive
    • maximumSides

      public int maximumSides
      Maximum number of sides. Inclusive
    • convex

      public boolean convex
      Does it require that the found polygons be convex?
  • Constructor Details

    • BaseConfigPolyline

      public BaseConfigPolyline()
  • Method Details