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

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

public AdaptiveThreshold ( int width, int height, double bias ) : void
width int
height int
bias double
Результат void
      public void AdaptiveThreshold(int width, int height, double bias)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_AdaptiveThreshold(Instance, (UIntPtr)width, (UIntPtr)height, bias, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_AdaptiveThreshold(Instance, (UIntPtr)width, (UIntPtr)height, bias, out exception);
        #endif
        CheckException(exception, result);
        Instance = result;
      }
      public void AddNoise(NoiseType noiseType, double attenuate, Channels channels)
MagickImage.NativeMagickImage