Interface DetectLine<T extends ImageGray<T>>

All Known Implementing Classes:
DetectEdgeLinesToLines, HoughBinary_to_DetectLine, HoughGradient_to_DetectLine

public interface DetectLine<T extends ImageGray<T>>

Interface for detecting lines inside images. Lines are returned using parametric line equations and do not indicate the beginning and end points.

  • Method Details

    • detect

      List<LineParametric2D_F32> detect(T input)
      Detect lines inside the image.
      Parameters:
      input - Input image.
      Returns:
      List of found lines.
    • getInputType

      ImageType<T> getInputType()