Class ConfigLineRansac

java.lang.Object
boofcv.factory.feature.detect.line.ConfigLineRansac
All Implemented Interfaces:
Configuration, Serializable

public class ConfigLineRansac extends Object implements Configuration
Configuration for DetectLineSegmentsGridRansac.
See Also:
  • Field Details

    • regionSize

      public int regionSize
      Size of the region considered. Try 40 and tune.
    • thresholdEdge

      public double thresholdEdge
      Threshold for determining which pixels belong to an edge or not. Try 30 and tune.
    • thresholdAngle

      public double thresholdAngle
      Tolerance in angle for allowing two edgels to be paired up, in radians. Try 2.36
    • connectLines

      public boolean connectLines
      Should lines be connected and optimized.
  • Constructor Details

    • ConfigLineRansac

      public ConfigLineRansac(int regionSize, double thresholdEdge, double thresholdAngle, boolean connectLines)
    • ConfigLineRansac

      public ConfigLineRansac()
  • Method Details