Emgu.CV.Retina.GetMagno C# (CSharp) Метод

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

Accessor of the motion channel of the retina (models peripheral vision)
public GetMagno ( ) : byte>.Image
Результат 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;
        }