Interface DetectLineSegment<T extends ImageGray<T>>

All Known Implementing Classes:
DetectLineSegmentsGridRansac

public interface DetectLineSegment<T extends ImageGray<T>>

Interface for detecting line segments inside images.

  • Method Summary

    Modifier and Type
    Method
    Description
    detect(T input)
    Detect lines inside the image.
  • Method Details

    • detect

      List<LineSegment2D_F32> detect(T input)
      Detect lines inside the image.
      Parameters:
      input - Input image.
      Returns:
      List of found line segments.