AForge.Imaging.Filters.CannyEdgeDetector.CannyEdgeDetector C# (CSharp) Метод

CannyEdgeDetector() публичный Метод

Initializes a new instance of the CannyEdgeDetector class.
public CannyEdgeDetector ( byte lowThreshold, byte highThreshold, double sigma ) : System
lowThreshold byte Low threshold.
highThreshold byte High threshold.
sigma double Gaussian sigma.
Результат System
        public CannyEdgeDetector( byte lowThreshold, byte highThreshold, double sigma )
            : this( )
        {
            this.lowThreshold    = lowThreshold;
            this.highThreshold   = highThreshold;
            gaussianFilter.Sigma = sigma;
        }

Same methods

CannyEdgeDetector::CannyEdgeDetector ( ) : System
CannyEdgeDetector::CannyEdgeDetector ( byte lowThreshold, byte highThreshold ) : System