AForge.Imaging.HoughLine.HoughLine C# (CSharp) 메소드

HoughLine() 공개 메소드

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.
리턴 System
        public HoughLine( double theta, short radius, short intensity, double relativeIntensity )
        {
            Theta = theta;
            Radius = radius;
            Intensity = intensity;
            RelativeIntensity = relativeIntensity;
        }