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

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

public Perceptible ( double epsilon, Channels channels ) : void
epsilon double
channels Channels
Результат void
      public void Perceptible(double epsilon, Channels channels)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickImage_Perceptible(Instance, epsilon, (UIntPtr)channels, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickImage_Perceptible(Instance, epsilon, (UIntPtr)channels, out exception);
        #endif
        CheckException(exception);
      }
      public IntPtr PerceptualHash()
MagickImage.NativeMagickImage