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

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

public CompareDistortion ( MagickImage image, ErrorMetric metric, Channels channels ) : double
image MagickImage
metric ErrorMetric
channels Channels
Результат double
      public double CompareDistortion(MagickImage image, ErrorMetric metric, Channels channels)
      {
        IntPtr exception = IntPtr.Zero;
        double result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_CompareDistortion(Instance, MagickImage.GetInstance(image), (UIntPtr)metric, (UIntPtr)channels, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_CompareDistortion(Instance, MagickImage.GetInstance(image), (UIntPtr)metric, (UIntPtr)channels, out exception);
        #endif
        CheckException(exception);
        return result;
      }
      public void Composite(MagickImage image, int x, int y, CompositeOperator compose)
MagickImage.NativeMagickImage