Emgu.CV.CvInvoke.cvCanny C# (CSharp) Method

cvCanny() private method

private cvCanny ( IntPtr image, IntPtr edges, double threshold1, double threshold2, int apertureSize ) : void
image IntPtr
edges IntPtr
threshold1 double
threshold2 double
apertureSize int
return void
        public static extern void cvCanny(
          IntPtr image,
          IntPtr edges,
          double threshold1,
          double threshold2,
          int apertureSize);
CvInvoke