Class HoughLines
Represents an operator that finds lines on each binary image in the sequence using a probabilistic Hough transform.
public class HoughLines : Transform<IplImage, LineSegment[]>
- Inheritance
-
HoughLines
- Inherited Members
Properties
- MaxLineGap
Gets or sets the maximum gap between line segments lying on the same line in order to consider them as a single line segment.
- MinLineLength
Gets or sets the minimum line length.
- Rho
Gets or sets the distance resolution, in units of pixels.
- Theta
Gets or sets the angle resolution, in radians.
- Threshold
Gets or sets the accumulator threshold. A line is returned when the corresponding accumulator is greater than this value.
Methods
- Process(IObservable<IplImage>)
Finds lines on each binary image in an observable sequence using a probabilistic Hough transform.