ImageMagick.ChannelMoments.NativeChannelMoments.GetHuInvariants C# (CSharp) 메소드

GetHuInvariants() 공개 메소드

public GetHuInvariants ( int index ) : double
index int
리턴 double
      public double GetHuInvariants(int index)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        return NativeMethods.X64.ChannelMoments_GetHuInvariants(Instance, (UIntPtr)index);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        return NativeMethods.X86.ChannelMoments_GetHuInvariants(Instance, (UIntPtr)index);
        #endif
      }
    }
ChannelMoments.NativeChannelMoments