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

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

public Segment ( ColorSpace colorSpace, double clusterThreshold, double smoothingThreshold ) : void
colorSpace ColorSpace
clusterThreshold double
smoothingThreshold double
Результат void
      public void Segment(ColorSpace colorSpace, double clusterThreshold, double smoothingThreshold)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickImage_Segment(Instance, (UIntPtr)colorSpace, clusterThreshold, smoothingThreshold, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickImage_Segment(Instance, (UIntPtr)colorSpace, clusterThreshold, smoothingThreshold, out exception);
        #endif
        CheckException(exception);
      }
      public void SelectiveBlur(double radius, double sigma, double threshold, Channels channels)
MagickImage.NativeMagickImage