码迷,mamicode.com
首页 > Windows程序 > 详细

C#.net 摄像头驱动程序,用avicap32.dll

时间:2015-07-01 13:57:42      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

装了摄像头后一般会有 avicap32.dll文件,没有一样可以用这些代码。

不需要在解决方案里面引用这个.dll文件。

下面有二种写法的例子:

例一:

 

技术分享using System;
技术分享using System.Runtime.InteropServices;
技术分享using System.Drawing;
技术分享using System.Drawing.Imaging;
技术分享
技术分享namespace WinVideo
技术分享{
技术分享    /// <summary>
技术分享    /// webcam 的摘要说明。
技术分享    /// </summary>
技术分享    public class webcam
技术分享    {
技术分享        private const int WM_USER=0x400;
技术分享        private const int WS_CHILD=0x40000000;
技术分享        private const int WS_VISIBLE=0x10000000;
技术分享        private const int WM_CAP_START=WM_USER;
技术分享        private const int WM_CAP_STOP=WM_CAP_START + 68;
技术分享        private const int WM_CAP_DRIVER_CONNECT=WM_CAP_START + 10;
技术分享        private const int WM_CAP_DRIVER_DISCONNECT=WM_CAP_START + 11;
技术分享        private const int WM_CAP_SAVEDIB=WM_CAP_START + 25;
技术分享        private const int WM_CAP_GRAB_FRAME=WM_CAP_START + 60;
技术分享        private const int WM_CAP_SEQUENCE=WM_CAP_START + 62;
技术分享        private const int WM_CAP_FILE_SET_CAPTURE_FILEA=WM_CAP_START + 20;
技术分享        private const int WM_CAP_SEQUENCE_NOFILE=WM_CAP_START+ 63;
技术分享        private const int WM_CAP_SET_OVERLAY=WM_CAP_START+ 51;
技术分享        private const int WM_CAP_SET_PREVIEW=WM_CAP_START+ 50;
技术分享        private const int WM_CAP_SET_CALLBACK_VIDEOSTREAM=WM_CAP_START +6;
技术分享        private const int WM_CAP_SET_CALLBACK_ERROR=WM_CAP_START +2;
技术分享        private const int WM_CAP_SET_CALLBACK_STATUSA=WM_CAP_START +3;
技术分享        private const int WM_CAP_SET_CALLBACK_FRAME=WM_CAP_START +5;
技术分享        private const int WM_CAP_SET_SCALE=WM_CAP_START+ 53;
技术分享        private const int WM_CAP_SET_PREVIEWRATE=WM_CAP_START+ 52;
技术分享        private IntPtr hWndC;
技术分享        private bool bStat = false;
技术分享
技术分享        private IntPtr mControlPtr;
技术分享        private int mWidth;
技术分享        private int mHeight;
技术分享        private int mLeft;
技术分享        private int mTop;
技术分享        private string GrabImagePath="";
技术分享        private string KinescopePath="";
技术分享
技术分享        /// <summary>
技术分享        /// 初始化摄像头
技术分享        /// </summary>
技术分享        /// <param name="handle">控件的句柄</param>
技术分享        /// <param name="left">开始显示的左边距</param>
技术分享        /// <param name="top">开始显示的上边距</param>
技术分享        /// <param name="width">要显示的宽度</param>
技术分享        /// <param name="height">要显示的长度</param>
技术分享        public webcam(IntPtr handle,int left,int top,int width,int height)
技术分享        {
技术分享            mControlPtr=handle;
技术分享            mWidth=width;
技术分享            mHeight=height;
技术分享            mLeft=left;
技术分享            mTop=top;
技术分享        }
技术分享        "属性设置"
技术分享
技术分享        [DllImport("avicap32.dll")]
技术分享        private static extern IntPtr capCreateCaptureWindowA(byte[] lpszWindowName,int dwStyle,int x,int y,int nWidth,int nHeight,IntPtr hWndParent,int nID);
技术分享
技术分享        [DllImport("avicap32.dll")]
技术分享        private static extern int capGetVideoFormat(IntPtr hWnd,IntPtr psVideoFormat,int wSize );
技术分享        [DllImport("User32.dll")]
技术分享        private static extern bool SendMessage(IntPtr hWnd,int wMsg,int wParam,long lParam);
技术分享
技术分享        /// <summary>
技术分享        /// 开始显示图像
技术分享        /// </summary>
技术分享        public void Start()
技术分享        {
技术分享            if(bStat)
技术分享                return;
技术分享
技术分享            bStat=true;
技术分享            byte[] lpszName=new byte[100];
技术分享
技术分享            hWndC=capCreateCaptureWindowA(lpszName,WS_CHILD|WS_VISIBLE ,mLeft,mTop,mWidth,mHeight,mControlPtr,0);
技术分享
技术分享            if (hWndC.ToInt32()!=0)
技术分享            {
技术分享                SendMessage(hWndC,WM_CAP_SET_CALLBACK_VIDEOSTREAM,0,0);
技术分享                SendMessage(hWndC,WM_CAP_SET_CALLBACK_ERROR,0,0);
技术分享                SendMessage(hWndC,WM_CAP_SET_CALLBACK_STATUSA,0,0);
技术分享                SendMessage(hWndC,WM_CAP_DRIVER_CONNECT,0,0);
技术分享                SendMessage(hWndC,WM_CAP_SET_SCALE,1,0);
技术分享                SendMessage(hWndC,WM_CAP_SET_PREVIEWRATE,66,0);
技术分享                SendMessage(hWndC,WM_CAP_SET_OVERLAY,1,0);
技术分享                SendMessage(hWndC,WM_CAP_SET_PREVIEW,1,0);
技术分享            }
技术分享            return;
技术分享        }
技术分享
技术分享        /// <summary>
技术分享        /// 停止显示
技术分享        /// </summary>
技术分享        public void Stop()
技术分享        {
技术分享            SendMessage(hWndC,WM_CAP_DRIVER_DISCONNECT,0,0);
技术分享            bStat=false;
技术分享        }
技术分享
技术分享        /// <summary>
技术分享        /// 抓图
技术分享        /// </summary>
技术分享        /// <param name="path">要保存bmp文件的路径</param>
技术分享        public void GrabImage()
技术分享        {
技术分享            IntPtr hBmp=Marshal.StringToHGlobalAnsi(GrabImagePath);
技术分享            SendMessage(hWndC,WM_CAP_SAVEDIB,0,hBmp.ToInt64());
技术分享
技术分享        }
技术分享
技术分享        /// <summary>
技术分享        /// 录像
技术分享        /// </summary>
技术分享        /// <param name="path">要保存avi文件的路径</param>
技术分享        public void Kinescope()
技术分享        {
技术分享            IntPtr hBmp=Marshal.StringToHGlobalAnsi(KinescopePath);
技术分享            SendMessage(hWndC,WM_CAP_FILE_SET_CAPTURE_FILEA,0,hBmp.ToInt64());
技术分享            SendMessage(hWndC,WM_CAP_SEQUENCE,0,0);
技术分享        }
技术分享
技术分享        /// <summary>
技术分享        /// 停止录像
技术分享        /// </summary>
技术分享        public void StopKinescope()
技术分享        {
技术分享            SendMessage(hWndC,WM_CAP_STOP,0,0);
技术分享        }
技术分享    }
技术分享}
技术分享

对该类的调用:

 

技术分享        public webcam wcam=null;
技术分享        private void Form1_Load(object sender, System.EventArgs e)
技术分享        {    
技术分享            start();
技术分享            this.btnKinescopeStop.Enabled=false;
技术分享        }
技术分享
技术分享        private void btnStar_Click(object sender, System.EventArgs e)
技术分享        {        
技术分享            wcam.Start();
技术分享        }
技术分享
技术分享        private void btnStop_Click(object sender, System.EventArgs e)
技术分享        {
技术分享            wcam.Stop();
技术分享        }
技术分享
技术分享        private void btnSnapPic_Click(object sender, System.EventArgs e)
技术分享        {
技术分享            //得到路径。例:d:/a.bmp
技术分享            string myPath=this.txtPath.Text;
技术分享            if(myPath=="")
技术分享            {
技术分享                MessageBox.Show("必须填写路径!");
技术分享                return;
技术分享            }
技术分享            else
技术分享            {
技术分享                wcam.grabImagePath=myPath;
技术分享                wcam.GrabImage();
技术分享                MessageBox.Show("截图成功!");
技术分享            }
技术分享        }
技术分享        public void start()
技术分享        {
技术分享            //以panel1为容器显示视频内容
技术分享            wcam=new webcam(panel1.Handle,0,0,this.panel1.Width,this.panel1.Height);        
技术分享            wcam.Start();
技术分享        }
技术分享
技术分享        private void panel1_SizeChanged(object sender, System.EventArgs e)
技术分享        {
技术分享            wcam.Stop();
技术分享            wcam.Height=this.panel1.Height;
技术分享            wcam.Width=this.panel1.Width;
技术分享            wcam.Start();
技术分享        }
技术分享        
技术分享        private delegate void delegateKinescope();
技术分享        private void btnKinescopeBegin_Click(object sender, System.EventArgs e)
技术分享        {
技术分享            //得到路径。例:d:/a.avi
技术分享            string myPath=this.txtPath.Text;
技术分享            if(myPath=="")
技术分享            {
技术分享                MessageBox.Show("必须填写路径!");
技术分享                return;
技术分享            }
技术分享            else
技术分享            {
技术分享                wcam.kinescopePath=myPath;
技术分享                delegateKinescope myK=new delegateKinescope(wcam.Kinescope);
技术分享                Thread threadKinescope=new Thread(new ThreadStart(myK));
技术分享                threadKinescope.Start();
技术分享                this.btnKinescopeBegin.Enabled=false;
技术分享                this.btnKinescopeStop.Enabled=true;
技术分享            }        
技术分享        }
技术分享        public void starKinescope()
技术分享        {
技术分享            delegateKinescope myK=new delegateKinescope(wcam.Kinescope);
技术分享        }
技术分享
技术分享        private void btnKinescopeStop_Click(object sender, System.EventArgs e)
技术分享        {
技术分享            wcam.StopKinescope();
技术分享            this.btnKinescopeBegin.Enabled=true;
技术分享            this.btnKinescopeStop.Enabled=false;            
技术分享        }

例二:

 

技术分享using System;
技术分享using System.Runtime.InteropServices;
技术分享
技术分享namespace webcam
技术分享{
技术分享    /**//// 
技术分享    /// avicap 的摘要说明。
技术分享    /// 
技术分享    public class showVideo
技术分享    {
技术分享        // showVideo calls
技术分享        [DllImport("avicap32.dll")] public static extern IntPtr capCreateCaptureWindowA(byte[] lpszWindowName, int dwStyle, int x, int y, int nWidth, int nHeight, IntPtr hWndParent, int nID);
技术分享        [DllImport("avicap32.dll")] public static extern bool capGetDriverDescriptionA(short wDriver, byte[] lpszName, int cbName, byte[] lpszVer, int cbVer);
技术分享        [DllImport("User32.dll")] public static extern bool SendMessage(IntPtr hWnd, int wMsg, bool wParam, int lParam); 
技术分享        [DllImport("User32.dll")] public static extern bool SendMessage(IntPtr hWnd, int wMsg, short wParam, int lParam); 
技术分享        [DllImport("User32.dll")] public static extern bool SendMessage(IntPtr hWnd, int wMsg, short wParam, FrameEventHandler lParam); 
技术分享        [DllImport("User32.dll")] public static extern bool SendMessage(IntPtr hWnd, int wMsg, int wParam, ref BITMAPINFO lParam);
技术分享        [DllImport("User32.dll")] public static extern int SetWindowPos(IntPtr hWnd, int hWndInsertAfter, int x, int y, int cx, int cy, int wFlags);
技术分享        [DllImport("avicap32.dll")]public static extern int capGetVideoFormat(IntPtr hWnd, IntPtr psVideoFormat, int wSize );
技术分享
技术分享        // Constants
技术分享        public const int WM_USER = 0x400;
技术分享        public const int WS_CHILD = 0x40000000;
技术分享        public const int WS_VISIBLE = 0x10000000;
技术分享        public const int SWP_NOMOVE = 0x2;
技术分享        public const int SWP_NOZORDER = 0x4;
技术分享        public const int WM_CAP_DRIVER_CONNECT = WM_USER + 10;
技术分享        public const int WM_CAP_DRIVER_DISCONNECT = WM_USER + 11;
技术分享        public const int WM_CAP_SET_CALLBACK_FRAME = WM_USER + 5;
技术分享        public const int WM_CAP_SET_PREVIEW = WM_USER + 50;
技术分享        public const int WM_CAP_SET_PREVIEWRATE = WM_USER + 52;
技术分享        public const int WM_CAP_SET_VIDEOFORMAT = WM_USER + 45;
技术分享 
技术分享        // Structures
技术分享        [StructLayout(LayoutKind.Sequential)] public struct VIDEOHDR
技术分享        {
技术分享            [MarshalAs(UnmanagedType.I4)] public int lpData;
技术分享            [MarshalAs(UnmanagedType.I4)] public int dwBufferLength;
技术分享            [MarshalAs(UnmanagedType.I4)] public int dwBytesUsed;
技术分享            [MarshalAs(UnmanagedType.I4)] public int dwTimeCaptured;
技术分享            [MarshalAs(UnmanagedType.I4)] public int dwUser;
技术分享            [MarshalAs(UnmanagedType.I4)] public int dwFlags;
技术分享            [MarshalAs(UnmanagedType.ByValArray, SizeConst=4)] public int[] dwReserved;
技术分享        }
技术分享
技术分享        [StructLayout(LayoutKind.Sequential)] public struct BITMAPINFOHEADER
技术分享        {
技术分享            [MarshalAs(UnmanagedType.I4)] public Int32 biSize ;
技术分享            [MarshalAs(UnmanagedType.I4)] public Int32 biWidth ;
技术分享            [MarshalAs(UnmanagedType.I4)] public Int32 biHeight ;
技术分享            [MarshalAs(UnmanagedType.I2)] public short biPlanes;
技术分享            [MarshalAs(UnmanagedType.I2)] public short biBitCount ;
技术分享            [MarshalAs(UnmanagedType.I4)] public Int32 biCompression;
技术分享            [MarshalAs(UnmanagedType.I4)] public Int32 biSizeImage;
技术分享            [MarshalAs(UnmanagedType.I4)] public Int32 biXPelsPerMeter;
技术分享            [MarshalAs(UnmanagedType.I4)] public Int32 biYPelsPerMeter;
技术分享            [MarshalAs(UnmanagedType.I4)] public Int32 biClrUsed;
技术分享            [MarshalAs(UnmanagedType.I4)] public Int32 biClrImportant;
技术分享        } 
技术分享
技术分享        [StructLayout(LayoutKind.Sequential)] public struct BITMAPINFO
技术分享        {
技术分享            [MarshalAs(UnmanagedType.Struct, SizeConst=40)] public BITMAPINFOHEADER bmiHeader;
技术分享            [MarshalAs(UnmanagedType.ByValArray, SizeConst=1024)] public Int32[] bmiColors;
技术分享        }
技术分享 
技术分享        public delegate void FrameEventHandler(IntPtr lwnd, IntPtr lpVHdr);
技术分享 
技术分享        // Public methods
技术分享        public static object GetStructure(IntPtr ptr,ValueType structure)
技术分享        {
技术分享            return Marshal.PtrToStructure(ptr,structure.GetType());
技术分享        }
技术分享 
技术分享        public static object GetStructure(int ptr,ValueType structure)
技术分享        {
技术分享            return GetStructure(new IntPtr(ptr),structure);
技术分享        }
技术分享 
技术分享        public static void Copy(IntPtr ptr,byte[] data)
技术分享        {
技术分享            Marshal.Copy(ptr,data,0,data.Length);
技术分享        }
技术分享 
技术分享        public static void Copy(int ptr,byte[] data)
技术分享        {
技术分享            Copy(new IntPtr(ptr),data);
技术分享        }
技术分享 
技术分享        public static int SizeOf(object structure)
技术分享        {
技术分享            return Marshal.SizeOf(structure); 
技术分享        }
技术分享    }
技术分享
技术分享    //Web Camera Class
技术分享    public class WebCamera
技术分享    {
技术分享        // Constructur
技术分享        public WebCamera(IntPtr handle, int width,int height)
技术分享        {
技术分享            mControlPtr = handle;
技术分享            mWidth = width;
技术分享            mHeight = height;
技术分享        } 
技术分享        // delegate for frame callback
技术分享        public delegate void RecievedFrameEventHandler(byte[] data);
技术分享        public event RecievedFrameEventHandler RecievedFrame;
技术分享 
技术分享        private IntPtr lwndC; // Holds the unmanaged handle of the control
技术分享        private IntPtr mControlPtr; // Holds the managed pointer of the control
技术分享        private int mWidth;
技术分享        private int mHeight;
技术分享 
技术分享        private showVideo.FrameEventHandler mFrameEventHandler; // Delegate instance for the frame callback - must keep alive! gc should NOT collect it
技术分享        // Close the web camera
技术分享        public void CloseWebcam()
技术分享        {
技术分享            this.capDriverDisconnect(this.lwndC);
技术分享        }
技术分享 
技术分享        // start the web camera
技术分享        public void StartWebCam()
技术分享        {
技术分享            byte[] lpszName = new byte[100];
技术分享            byte[] lpszVer = new byte[100];
技术分享 
技术分享            showVideo.capGetDriverDescriptionA(0, lpszName, 100,lpszVer, 100);
技术分享            this.lwndC = showVideo.capCreateCaptureWindowA(lpszName, showVideo.WS_VISIBLE + showVideo.WS_CHILD, 0, 0, mWidth, mHeight, mControlPtr, 0);
技术分享 
技术分享            if (this.capDriverConnect(this.lwndC, 0))
技术分享            {
技术分享                this.capPreviewRate(this.lwndC, 66);
技术分享                this.capPreview(this.lwndC, true);
技术分享                showVideo.BITMAPINFO bitmapinfo = new showVideo.BITMAPINFO(); 
技术分享                bitmapinfo.bmiHeader.biSize = showVideo.SizeOf(bitmapinfo.bmiHeader);
技术分享                bitmapinfo.bmiHeader.biWidth = 352;
技术分享                bitmapinfo.bmiHeader.biHeight = 288;
技术分享                bitmapinfo.bmiHeader.biPlanes = 1;
技术分享                bitmapinfo.bmiHeader.biBitCount = 24;
技术分享                this.capSetVideoFormat(this.lwndC, ref bitmapinfo, showVideo.SizeOf(bitmapinfo));
技术分享                this.mFrameEventHandler = new showVideo.FrameEventHandler(FrameCallBack);
技术分享                this.capSetCallbackOnFrame(this.lwndC, this.mFrameEventHandler);
技术分享                showVideo.SetWindowPos(this.lwndC, 0, 0, 0, mWidth , mHeight , 6);
技术分享            } 
技术分享        }
技术分享
技术分享        // private functions
技术分享        private bool capDriverConnect(IntPtr lwnd, short i)
技术分享        {
技术分享            return showVideo.SendMessage(lwnd, showVideo.WM_CAP_DRIVER_CONNECT, i, 0);
技术分享        }
技术分享        private bool capDriverDisconnect(IntPtr lwnd)
技术分享        {
技术分享            return showVideo.SendMessage(lwnd, showVideo.WM_CAP_DRIVER_DISCONNECT, 0, 0);
技术分享        }
技术分享        private bool capPreview(IntPtr lwnd, bool f)
技术分享        {return showVideo.SendMessage(lwnd, showVideo.WM_CAP_SET_PREVIEW , f, 0);}
技术分享
技术分享        private bool capPreviewRate(IntPtr lwnd, short wMS)
技术分享        {
技术分享            return showVideo.SendMessage(lwnd, showVideo.WM_CAP_SET_PREVIEWRATE, wMS, 0);
技术分享        }
技术分享 
技术分享        private bool capSetCallbackOnFrame(IntPtr lwnd, showVideo.FrameEventHandler lpProc)
技术分享        {
技术分享            return showVideo.SendMessage(lwnd, showVideo.WM_CAP_SET_CALLBACK_FRAME, 0, lpProc);
技术分享        }
技术分享
技术分享        private bool capSetVideoFormat(IntPtr hCapWnd, ref showVideo.BITMAPINFO BmpFormat, int CapFormatSize)
技术分享        {
技术分享            return showVideo.SendMessage(hCapWnd, showVideo.WM_CAP_SET_VIDEOFORMAT, CapFormatSize, ref BmpFormat);
技术分享        }
技术分享
技术分享        private void FrameCallBack(IntPtr lwnd, IntPtr lpVHdr)
技术分享        {
技术分享            showVideo.VIDEOHDR videoHeader = new showVideo.VIDEOHDR();
技术分享            byte[] VideoData;
技术分享            videoHeader = (showVideo.VIDEOHDR)showVideo.GetStructure(lpVHdr,videoHeader);
技术分享            VideoData = new byte[videoHeader.dwBytesUsed];
技术分享            showVideo.Copy(videoHeader.lpData ,VideoData);
技术分享            if (this.RecievedFrame != null)
技术分享                this.RecievedFrame (VideoData);
技术分享        }
技术分享    }
技术分享
技术分享}
技术分享

调用代码:

 

技术分享        WebCamera wc;
技术分享
技术分享        private void Form1_Load(object sender, System.EventArgs e)
技术分享        {
技术分享            b_play.Enabled = false;
技术分享            b_stop.Enabled = true;
技术分享            panelPreview.Size = new Size(330,330);
技术分享            wc = new WebCamera( panelPreview.Handle,panelPreview.Width,panelPreview.Height);
技术分享            wc.StartWebCam();
技术分享        }
技术分享
技术分享        private void button1_Click(object sender, System.EventArgs e)
技术分享        {
技术分享            b_play.Enabled = false;
技术分享            b_stop.Enabled = true;
技术分享            panelPreview.Size = new Size(330,330);
技术分享            wc = new WebCamera( panelPreview.Handle,panelPreview.Width,panelPreview.Height);
技术分享            wc.StartWebCam();
技术分享        }
技术分享
技术分享        private void b_stop_Click(object sender, System.EventArgs e)
技术分享        {
技术分享            b_play.Enabled = true;
技术分享            b_stop.Enabled = false;
技术分享            wc.CloseWebcam();
技术分享        }

C#.net 摄像头驱动程序,用avicap32.dll

标签:

原文地址:http://www.cnblogs.com/JUSTSOSOBLOG/p/4612801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!