Emgu.CV.Retina.GetMagno C# (CSharp) Method

GetMagno() public method

Accessor of the motion channel of the retina (models peripheral vision)
public GetMagno ( ) : byte>.Image
return byte>.Image
        public Image<Gray, byte> GetMagno()
        {
            if (_ptr == IntPtr.Zero)
            return null;

             Image<Gray, Byte> magno = new Image<Gray, byte>(_inputSize);
             CvInvoke.CvRetinaGetMagno(_ptr, magno);
             return magno;
        }