ImageMagick.PerceptualHash.GetChannel C# (CSharp) Method

GetChannel() public method

Returns the perceptual hash for the specified channel.
public GetChannel ( PixelChannel channel ) : ChannelPerceptualHash
channel PixelChannel The channel to get the has for.
return ChannelPerceptualHash
    public ChannelPerceptualHash GetChannel(PixelChannel channel)
    {
      ChannelPerceptualHash perceptualHash;
      _Channels.TryGetValue(channel, out perceptualHash);
      return perceptualHash;
    }