Emgu.CV.CvInvoke.CvRetinaGetMagno C# (CSharp) Method

CvRetinaGetMagno() private method

private CvRetinaGetMagno ( IntPtr retina, IntPtr magno ) : void
retina IntPtr
magno IntPtr
return void
        internal static extern void CvRetinaGetMagno(IntPtr retina, IntPtr magno);

Usage Example

コード例 #1
0
ファイル: Retina.cs プロジェクト: ssor/csharpDemos
        /// <summary>
        /// Accessor of the motion channel of the retina (models peripheral vision)
        /// </summary>
        /// <returns>The motion channel of the retina.</returns>
        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);
        }
CvInvoke