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

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

public Histogram ( UIntPtr &length ) : IntPtr
length UIntPtr
Результат IntPtr
      public IntPtr Histogram(out UIntPtr length)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_Histogram(Instance, out length, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_Histogram(Instance, out length, out exception);
        #endif
        MagickException magickException = MagickExceptionHelper.Create(exception);
        if (MagickExceptionHelper.IsError(magickException))
        {
          if (result != IntPtr.Zero)
            ImageMagick.MagickColorCollection.DisposeList(result);
          throw magickException;
        }
        RaiseWarning(magickException);
        return result;
      }
      public void HoughLine(int width, int height, int threshold)
MagickImage.NativeMagickImage