Package boofcv.abst.feature.detect.line
Class DetectLineSegmentsGridRansac<T extends ImageGray<T>,D extends ImageGray<D>>
java.lang.Object
boofcv.abst.feature.detect.line.DetectLineSegmentsGridRansac<T,D>
- All Implemented Interfaces:
DetectLineSegment<T>
public class DetectLineSegmentsGridRansac<T extends ImageGray<T>,D extends ImageGray<D>>
extends Object
implements DetectLineSegment<T>
Wrapper around
GridRansacLineDetector
for DetectLineSegment
-
Constructor Summary
ConstructorDescriptionDetectLineSegmentsGridRansac
(GridRansacLineDetector<D> detectorGrid, @Nullable ConnectLinesGrid connect, ImageGradient<T, D> gradient, double edgeThreshold, Class<T> imageType, Class<D> derivType) -
Method Summary
Modifier and TypeMethodDescriptionDetect lines inside the image.
-
Constructor Details
-
DetectLineSegmentsGridRansac
public DetectLineSegmentsGridRansac(GridRansacLineDetector<D> detectorGrid, @Nullable @Nullable ConnectLinesGrid connect, ImageGradient<T, D> gradient, double edgeThreshold, Class<T> imageType, Class<D> derivType)
-
-
Method Details
-
detect
Description copied from interface:DetectLineSegment
Detect lines inside the image.- Specified by:
detect
in interfaceDetectLineSegment<T extends ImageGray<T>>
- Parameters:
input
- Input image.- Returns:
- List of found line segments.
-