C#获取摄像头的几个简单方法Word下载.docx
- 文档编号:21582029
- 上传时间:2023-01-31
- 格式:DOCX
- 页数:57
- 大小:39.36KB
C#获取摄像头的几个简单方法Word下载.docx
《C#获取摄像头的几个简单方法Word下载.docx》由会员分享,可在线阅读,更多相关《C#获取摄像头的几个简单方法Word下载.docx(57页珍藏版)》请在冰豆网上搜索。
包含一套特殊的DrawDib函数,用来处理程序上的视频操作。
MCIAVI.DRV:
包括对VFW的MCI命令解释器的驱动程序。
AVIFILE.DLL:
包含由标准多媒体I/O(mmio)函数提供的更高级的命令,用来访问.AVI文件。
ICM:
压缩管理器,用于管理的视频压缩/解压缩的编译码器。
ACM:
音频压缩管理器,提供与ICM相似的服务,适用于波形音频。
AVICAP32.DLL中的函数和USER32.DLL中的函数,函数语法及结构如下。
(1)capCreateCaptureWindow函数
该函数用于创建一个视频捕捉窗口。
语法如下:
[DllImport("
avicap32.dll"
)]
publicstaticexternIntPtrcapCreateCaptureWindowA(byte[]lpszWindowName,intdwStyle,intx,inty,intnWidth,intnHeight,IntPtrhWndParent,intnID);
参数说明如下。
lpszWindowName:
标识窗口的名称。
dwStyle:
标识窗口风格。
x、y:
标识窗口的左上角坐标。
nWidth、nHeight:
标识窗口的宽度和高度。
hWnd:
标识父窗口句柄。
nID:
标识窗口ID。
返回值:
视频捕捉窗口句柄。
(2)SendMessage函数
用于向Windows系统发送消息机制。
User32.dll"
privatestaticexternboolSendMessage(IntPtrhWnd,intwMsg,intwParam,intlParam);
窗口句柄。
wMsg:
将要发送的消息。
wParam、lParam:
消息的参数,每个消息都有两个参数,参数设置由发送的消息而定。
Form1窗体中通过调用视频类中的方法来实现相应的功能。
在【开始录像】按钮的Click事件中添加如下代码:
privatevoidbuttonStart_Click(objectsender,EventArgse)
{
buttonStart.Enabled=false;
buttonStop.Enabled=true;
//btnPz.Enabled=true;
video=newcVideo(picCapture.Handle,picCapture.Width,picCapture.Height);
video.StartWebCam();
}
在【停止录像】按钮的Click事件中添加如下代码:
privatevoidbuttonStop_Click(objectsender,EventArgse)
buttonStart.Enabled=true;
buttonStop.Enabled=false;
buttonPz.Enabled=false;
video.CloseWebcam();
在【拍照】按钮的Click事件下添加如下代码:
privatevoidbuttonPz_Click(objectsender,EventArgse)
video.GrabImage(picCapture.Handle,"
d:
\\a.bmp"
);
完整代码如下:
1、Program.cs
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Windows.Forms;
namespaceVideo1
staticclassProgram
///<
summary>
///应用程序的主入口点。
/summary>
[STAThread]
staticvoidMain()
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(newForm1());
2、Form1.cs
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Drawing;
usingSystem.Text;
publicpartialclassForm1:
Form
cVideovideo;
publicForm1()
InitializeComponent();
3、Form1.Designer.cs
partialclassForm1
///必需的设计器变量。
privateSystem.ComponentModel.IContainercomponents=null;
///清理所有正在使用的资源。
param>
如果应释放托管资源,为true;
否则为false。
<
/param>
protectedoverridevoidDispose(booldisposing)
if(disposing&
&
(components!
=null))
components.Dispose();
base.Dispose(disposing);
#regionWindows窗体设计器生成的代码
///设计器支持所需的方法-不要
///使用代码编辑器修改此方法的内容。
privatevoidInitializeComponent()
System.ComponentModel.ComponentResourceManagerresources=newSystem.ComponentModel.ComponentResourceManager(typeof(Form1));
this.buttonStart=newSystem.Windows.Forms.Button();
this.buttonStop=newSystem.Windows.Forms.Button();
this.buttonPz=newSystem.Windows.Forms.Button();
this.panelTop=newSystem.Windows.Forms.Panel();
this.picCapture=newSystem.Windows.Forms.PictureBox();
this.panelBottom=newSystem.Windows.Forms.Panel();
this.panelTop.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picCapture)).BeginInit();
this.panelBottom.SuspendLayout();
this.SuspendLayout();
//
//buttonStart
this.buttonStart.Location=newSystem.Drawing.Point(39,3);
this.buttonStart.Name="
buttonStart"
;
this.buttonStart.Size=newSystem.Drawing.Size(88,36);
this.buttonStart.TabIndex=1;
this.buttonStart.Text="
开始录像"
this.buttonStart.UseVisualStyleBackColor=true;
this.buttonStart.Click+=newSystem.EventHandler(this.buttonStart_Click);
//buttonStop
this.buttonStop.Location=newSystem.Drawing.Point(181,3);
this.buttonStop.Name="
buttonStop"
this.buttonStop.Size=newSystem.Drawing.Size(80,36);
this.buttonStop.TabIndex=2;
this.buttonStop.Text="
停止录像"
this.buttonStop.UseVisualStyleBackColor=true;
this.buttonStop.Click+=newSystem.EventHandler(this.buttonStop_Click);
//buttonPz
this.buttonPz.Location=newSystem.Drawing.Point(313,3);
this.buttonPz.Name="
buttonPz"
this.buttonPz.Size=newSystem.Drawing.Size(77,36);
this.buttonPz.TabIndex=3;
this.buttonPz.Text="
拍照"
this.buttonPz.UseVisualStyleBackColor=true;
this.buttonPz.Click+=newSystem.EventHandler(this.buttonPz_Click);
//panelTop
this.panelTop.AutoSize=true;
this.panelTop.Controls.Add(this.picCapture);
this.panelTop.Dock=System.Windows.Forms.DockStyle.Fill;
this.panelTop.Location=newSystem.Drawing.Point(0,0);
this.panelTop.Name="
panelTop"
this.panelTop.Size=newSystem.Drawing.Size(468,372);
this.panelTop.TabIndex=4;
//picCapture
this.picCapture.Dock=System.Windows.Forms.DockStyle.Fill;
this.picCapture.InitialImage=((System.Drawing.Image)(resources.GetObject("
picCapture.InitialImage"
)));
this.picCapture.Location=newSystem.Drawing.Point(0,0);
this.picCapture.Name="
picCapture"
this.picCapture.Size=newSystem.Drawing.Size(468,372);
this.picCapture.TabIndex=0;
this.picCapture.TabStop=false;
//panelBottom
this.panelBottom.Controls.Add(this.buttonStart);
this.panelBottom.Controls.Add(this.buttonStop);
this.panelBottom.Controls.Add(this.buttonPz);
this.panelBottom.Dock=System.Windows.Forms.DockStyle.Bottom;
this.panelBottom.Location=newSystem.Drawing.Point(0,327);
this.panelBottom.Name="
panelBottom"
this.panelBottom.Size=newSystem.Drawing.Size(468,45);
this.panelBottom.TabIndex=5;
//Form1
this.AutoScaleDimensions=newSystem.Drawing.SizeF(6F,12F);
this.AutoScaleMode=System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize=newSystem.Drawing.Size(468,372);
this.Controls.Add(this.panelBottom);
this.Controls.Add(this.panelTop);
this.Name="
Form1"
this.Text="
this.panelTop.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.picCapture)).EndInit();
this.panelBottom.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
#endregion
privateSystem.Windows.Forms.PictureBoxpicCapture;
privateSystem.Windows.Forms.ButtonbuttonStart;
privateSystem.Windows.Forms.ButtonbuttonStop;
privateSystem.Windows.Forms.ButtonbuttonPz;
privateSystem.Windows.Forms.PanelpanelTop;
privateSystem.Windows.Forms.PanelpanelBottom;
4、ClassVideoAPI.cs
usingSystem.Runtime.InteropServices;
usingSystem.Threading;
usingSystem.IO;
publicclassVideoAPI//视频API类
//视频API调用
)]//包含了执行视频捕获的函数,它给AVI文件I/O和视频、音频设备驱动程序提供一个高级接口
publicstaticexternIntPtrcapCreateCaptureWindow(stringlpszWindowName,intdwStyle,intx,inty,intnWidth,intnHeight,IntPtrhwndParent,intnID);
AVICAP32.dll"
CharSet=CharSet.Unicode)]
publicstaticexternboolcapGetDriverDescription(intwDriverIndex,StringBuilderlpszName,intcbName,StringBuilderlpszVer,intcbVer);
publicstaticexternboolcapGetDriverDescriptionA(shortwDriver,byte[]lpszName,intcbName,byte[]lpszVer,intcbVer);
publicstaticexternboolSendMessage(IntPtrhWnd,intwMsg,boolwParam,intlParam);
publicstaticexternboolSendMessage(IntPtrhWnd,intwMsg,shortwParam,intlParam);
publicstaticexternboolSendMessage(IntPtrhWnd,intwMsg,intwParam,intlParam);
publicstaticexternboolSendMessage(IntPtrhWnd,intwMsg,shortwParam,FrameEventHandlerlParam);
publicstaticexternboolSendMessage(IntPtrhWnd,intwMsg,intwParam,refBITMAPINFOlParam);
publicstaticexternboolSendMessage(IntPtrhWnd,intwMsg,intwParam,refCAPDRIVERCAPSlParam);
publicstaticexternboolSendMessage(IntPtrhWnd,intwMsg,intwParam,refCAPTUREPARMSlParam);
publicstaticexternboolSendMessage(IntPtrhWnd,intwMsg,intwParam,refCAPSTATUSlParam);
publicstaticexternintSetWindowPos(IntPtrhWnd,inthWndInsertAfter,intx,inty,intcx,intcy,intwFlags)
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- C# 获取 摄像头 几个 简单 方法