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

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

public HoughLine ( int width, int height, int threshold ) : void
width int
height int
threshold int
Результат void
      public void HoughLine(int width, int height, int threshold)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_HoughLine(Instance, (UIntPtr)width, (UIntPtr)height, (UIntPtr)threshold, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_HoughLine(Instance, (UIntPtr)width, (UIntPtr)height, (UIntPtr)threshold, out exception);
        #endif
        CheckException(exception, result);
        Instance = result;
      }
      public void Implode(double amount, PixelInterpolateMethod method)
MagickImage.NativeMagickImage