ImageMagick.PerceptualHash.GetChannel C# (CSharp) Метод

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

Returns the perceptual hash for the specified channel.
public GetChannel ( PixelChannel channel ) : ChannelPerceptualHash
channel PixelChannel The channel to get the has for.
Результат ChannelPerceptualHash
    public ChannelPerceptualHash GetChannel(PixelChannel channel)
    {
      ChannelPerceptualHash perceptualHash;
      _Channels.TryGetValue(channel, out perceptualHash);
      return perceptualHash;
    }