ImageMagick.ChannelPerceptualHash.HclpHuPhash C# (CSharp) Метод

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

Hclp hu perceptual hash.
public HclpHuPhash ( int index ) : double
index int The index to use.
Результат double
    public double HclpHuPhash(int index)
    {
      Throw.IfOutOfRange(nameof(index), index, 7);

      return _HclpHuPhash[index];
    }

Usage Example

Пример #1
0
 private void TestChannel(ChannelPerceptualHash channel, int index, double srgbHuPhash, double hclpHuPhash)
 {
   Assert.AreEqual(srgbHuPhash, channel.SrgbHuPhash(index), 0.0001);
   Assert.AreEqual(hclpHuPhash, channel.HclpHuPhash(index), 0.0001);
 }
All Usage Examples Of ImageMagick.ChannelPerceptualHash::HclpHuPhash