c# 如何在form中通过摄像头拍照

destinyC 2010-04-12 11:43:44
如题
请各路大侠指点迷津
...全文
1305 25 打赏 收藏 转发到动态 举报
写回复
用AI写文章
25 条回复
切换为时间正序
请发表友善的回复…
发表回复
yefeng1677 2012-10-25
  • 打赏
  • 举报
回复
用VFW 不能用多个无驱动摄像头
水碎了 2011-12-06
  • 打赏
  • 举报
回复
刚好今天派上用场,谢谢各位
bigPillow 2011-11-06
  • 打赏
  • 举报
回复
在此学习。;。。
leochen315531813 2010-11-07
  • 打赏
  • 举报
回复
学习ing
linianfeng 2010-10-27
  • 打赏
  • 举报
回复
不错,学习了
season1668 2010-04-12
  • 打赏
  • 举报
回复
关注中```````````
l13873666736 2010-04-12
  • 打赏
  • 举报
回复
MARK一下,可能用得到
指间的风 2010-04-12
  • 打赏
  • 举报
回复
呵呵,想干什么?
cyhf00808 2010-04-12
  • 打赏
  • 举报
回复
去看下DirectShow技术
semisweet 2010-04-12
  • 打赏
  • 举报
回复
学习~~
致简致优 2010-04-12
  • 打赏
  • 举报
回复
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;

namespace CamTest
{

//参考AVICap技术
public class Cam
{
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 IntPtr mControlPtr;
private bool bWorkStart = false;
private int mWidth;
private int mHeight;
private int mLeft;
private int mTop;

/// <summary>
/// 初始化显示图像
/// </summary>
/// <param name="handle">控件的句柄 </param>
/// <param name="left">开始显示的左边距 </param>
/// <param name="top">开始显示的上边距 </param>
/// <param name="width">要显示的宽度 </param>
/// <param name="height">要显示的长度 </param>
public Cam(IntPtr handle, int left, int top, int width, int height)
{
mControlPtr = handle;
mWidth = width;
mHeight = height;
mLeft = left;
mTop = top;
}
// 创建捕捉窗口
//HWND VFWAPI capCreateCaptureWindow(
// LPCSTR lpszWindowName,// 捕捉窗口名字
// DWORD dwStyle,// 捕捉窗口的风格
// int x,// 窗口左上角x轴坐标
// int y,// 窗口左上角y轴坐标
// int nWidth,// 窗口的宽度
// int nHeight,// 窗口的高度
// HWND HWnd,// 父窗口句柄
// Int nID// 捕捉窗口的ID号
//);
//如果该函数调用成功 则函数返回窗口的句柄 否则函数返回NULL。
[DllImport("avicap32.dll")]
private static extern IntPtr capCreateCaptureWindowA(byte[] lpszWindowName, int dwStyle, int x, int y, int nWidth, int nHeight, IntPtr hWndParent, int nID);

// 视频格式设置对话框
// BOOL capDlgVideoFormat( hwnd ); // hwnd:捕捉窗口句柄
//视频格式设置对话框对于每一个捕捉驱动程序来说,是唯一的。而且,有些驱动程序不一定支持这一功能。应用程序可以通过检测CAPDRIVERCAPS结构的成员变量fHasDlgVideoFormat来判断驱动程序是否支持这一功能。

[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, IntPtr wParam, IntPtr lParam);

/// <summary>
/// 开始显示图像
/// </summary>
public void Start()
{
if (bWorkStart)
{
return;
}
bWorkStart = 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, IntPtr.Zero, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_SET_CALLBACK_ERROR, IntPtr.Zero, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_SET_CALLBACK_STATUSA, IntPtr.Zero, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_DRIVER_CONNECT, IntPtr.Zero, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_SET_SCALE, (IntPtr)1, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_SET_PREVIEWRATE, (IntPtr)66, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_SET_OVERLAY, (IntPtr)1, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_SET_PREVIEW, (IntPtr)1, IntPtr.Zero);
}
return;
}

/// <summary>
/// 停止显示图像
/// </summary>
public void Stop()
{
SendMessage(hWndC, WM_CAP_DRIVER_DISCONNECT, IntPtr.Zero, IntPtr.Zero);
bWorkStart = false;
}

/// <summary>
/// 抓图
/// </summary>
/// <param name="path">要保存bmp文件的路径 </param>
public void GrabImage(string path)
{
IntPtr hBmp = Marshal.StringToHGlobalAnsi(path); //将System.String内容复制到非托管内存当中
SendMessage(hWndC, WM_CAP_SAVEDIB, IntPtr.Zero, hBmp);
}

///<summary>
///录像
///</summary>
///<param name="path">要保存avi文件的路径</param>
public void Kinescope(string path)
{
IntPtr hCap = Marshal.StringToHGlobalAnsi(path);
SendMessage(hWndC, WM_CAP_FILE_SET_CAPTURE_FILEA, IntPtr.Zero, hCap);
SendMessage(hWndC, WM_CAP_SEQUENCE, IntPtr.Zero, hCap);
}

///<summary>
///停止录像
///</summary>
public void StopKinescope()
{
SendMessage(hWndC, WM_CAP_STOP, IntPtr.Zero, IntPtr.Zero);
}

}
}

a13569369465 2010-04-12
  • 打赏
  • 举报
回复
[Quote=引用 12 楼 hzg_1998 的回复:]
C# code
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;

namespace CamTest
{

//参考AVICap技术
public class Cam
{
p……
[/Quote]牛逼
jaredzeng 2010-04-12
  • 打赏
  • 举报
回复
每天回帖即可获得10分可用分!小技巧
flyerwing 2010-04-12
  • 打赏
  • 举报
回复
写个EXE用特殊连接挂起来,或者是更改注册表项,自动挂起EXE拍照。
hzg_1998 2010-04-12
  • 打赏
  • 举报
回复
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;

namespace CamTest
{

//参考AVICap技术
public class Cam
{
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 IntPtr mControlPtr;
private bool bWorkStart = false;
private int mWidth;
private int mHeight;
private int mLeft;
private int mTop;

/// <summary>
/// 初始化显示图像
/// </summary>
/// <param name="handle">控件的句柄 </param>
/// <param name="left">开始显示的左边距 </param>
/// <param name="top">开始显示的上边距 </param>
/// <param name="width">要显示的宽度 </param>
/// <param name="height">要显示的长度 </param>
public Cam(IntPtr handle, int left, int top, int width, int height)
{
mControlPtr = handle;
mWidth = width;
mHeight = height;
mLeft = left;
mTop = top;
}
// 创建捕捉窗口
//HWND VFWAPI capCreateCaptureWindow(
// LPCSTR lpszWindowName,// 捕捉窗口名字
// DWORD dwStyle,// 捕捉窗口的风格
// int x,// 窗口左上角x轴坐标
// int y,// 窗口左上角y轴坐标
// int nWidth,// 窗口的宽度
// int nHeight,// 窗口的高度
// HWND HWnd,// 父窗口句柄
// Int nID// 捕捉窗口的ID号
//);
//如果该函数调用成功 则函数返回窗口的句柄 否则函数返回NULL。
[DllImport("avicap32.dll")]
private static extern IntPtr capCreateCaptureWindowA(byte[] lpszWindowName, int dwStyle, int x, int y, int nWidth, int nHeight, IntPtr hWndParent, int nID);

// 视频格式设置对话框
// BOOL capDlgVideoFormat( hwnd ); // hwnd:捕捉窗口句柄
//视频格式设置对话框对于每一个捕捉驱动程序来说,是唯一的。而且,有些驱动程序不一定支持这一功能。应用程序可以通过检测CAPDRIVERCAPS结构的成员变量fHasDlgVideoFormat来判断驱动程序是否支持这一功能。

[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, IntPtr wParam, IntPtr lParam);

/// <summary>
/// 开始显示图像
/// </summary>
public void Start()
{
if (bWorkStart)
{
return;
}
bWorkStart = 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, IntPtr.Zero, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_SET_CALLBACK_ERROR, IntPtr.Zero, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_SET_CALLBACK_STATUSA, IntPtr.Zero, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_DRIVER_CONNECT, IntPtr.Zero, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_SET_SCALE, (IntPtr)1, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_SET_PREVIEWRATE, (IntPtr)66, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_SET_OVERLAY, (IntPtr)1, IntPtr.Zero);
SendMessage(hWndC, WM_CAP_SET_PREVIEW, (IntPtr)1, IntPtr.Zero);
}
return;
}

/// <summary>
/// 停止显示图像
/// </summary>
public void Stop()
{
SendMessage(hWndC, WM_CAP_DRIVER_DISCONNECT, IntPtr.Zero, IntPtr.Zero);
bWorkStart = false;
}

/// <summary>
/// 抓图
/// </summary>
/// <param name="path">要保存bmp文件的路径 </param>
public void GrabImage(string path)
{
IntPtr hBmp = Marshal.StringToHGlobalAnsi(path); //将System.String内容复制到非托管内存当中
SendMessage(hWndC, WM_CAP_SAVEDIB, IntPtr.Zero, hBmp);
}

///<summary>
///录像
///</summary>
///<param name="path">要保存avi文件的路径</param>
public void Kinescope(string path)
{
IntPtr hCap = Marshal.StringToHGlobalAnsi(path);
SendMessage(hWndC, WM_CAP_FILE_SET_CAPTURE_FILEA, IntPtr.Zero, hCap);
SendMessage(hWndC, WM_CAP_SEQUENCE, IntPtr.Zero, hCap);
}

///<summary>
///停止录像
///</summary>
public void StopKinescope()
{
SendMessage(hWndC, WM_CAP_STOP, IntPtr.Zero, IntPtr.Zero);
}

}
}
xrongzhen 2010-04-12
  • 打赏
  • 举报
回复
收藏一下 有空研究
itliyi 2010-04-12
  • 打赏
  • 举报
回复
[Quote=引用 2 楼 wuyazhe 的回复:]
摄像头编程大全(源码)(c#)
C# 摄像头视频捕捉 (使用DirectX.Capture)
[/Quote]
「已注销」 2010-04-12
  • 打赏
  • 举报
回复
我暂时想不到,如二楼所说,那里的比较全!
  • 打赏
  • 举报
回复
帮顶!~
加载更多回复(3)

110,577

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Web++
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧