AForge.Imaging.HoughLine.HoughLine C# (CSharp) Method

HoughLine() public method

Initializes a new instance of the HoughLine class.
public HoughLine ( double theta, short radius, short intensity, double relativeIntensity ) : System
theta double Line's slope.
radius short Line's distance from image center.
intensity short Line's absolute intensity.
relativeIntensity double Line's relative intensity.
return System
        public HoughLine( double theta, short radius, short intensity, double relativeIntensity )
        {
            Theta = theta;
            Radius = radius;
            Intensity = intensity;
            RelativeIntensity = relativeIntensity;
        }