ImageMagick.MagickImage.NativeMagickImage.ConnectedComponents C# (CSharp) Метод

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

public ConnectedComponents ( int connectivity, IntPtr &objects ) : void
connectivity int
objects System.IntPtr
Результат void
      public void ConnectedComponents(int connectivity, out IntPtr objects)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_ConnectedComponents(Instance, (UIntPtr)connectivity, out objects, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_ConnectedComponents(Instance, (UIntPtr)connectivity, out objects, out exception);
        #endif
        CheckException(exception, result);
        Instance = result;
      }
      public void Convolve(DoubleMatrix matrix)
MagickImage.NativeMagickImage