ImageMagick.MagickImage.NativeMagickImage.AdaptiveSharpen C# (CSharp) Method

AdaptiveSharpen() public method

public AdaptiveSharpen ( double radius, double sigma, Channels channels ) : void
radius double
sigma double
channels Channels
return void
      public void AdaptiveSharpen(double radius, double sigma, Channels channels)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_AdaptiveSharpen(Instance, radius, sigma, (UIntPtr)channels, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_AdaptiveSharpen(Instance, radius, sigma, (UIntPtr)channels, out exception);
        #endif
        CheckException(exception, result);
        Instance = result;
      }
      public void AdaptiveThreshold(int width, int height, double bias)
MagickImage.NativeMagickImage