Class HoughCircles
Represents an operator that finds circles on each grayscale image in the sequence using a Hough transform.
public class HoughCircles : Transform<IplImage, Circle[]>
- Inheritance
-
HoughCircles
- Inherited Members
Properties
- AccumulatorFactor
Gets or sets the inverse ratio of the accumulator resolution to image resolution.
- MaxRadius
Gets or sets a value specifying the maximum circle radius.
- MinDistance
Gets or sets the minimum distance between the centers of detected circles.
- MinRadius
Gets or sets a value specifying the minimum circle radius.
- Param1
Gets or sets the higher threshold of the canny edge detector.
- Param2
Gets or sets the accumulator threshold at the center detection stage.
Methods
- Process(IObservable<IplImage>)
Finds circles on each grayscale image in an observable sequence using a Hough transform.