求助C#调用摄像头只能一次的原因,该怎么改,是摄像头bitmap占用的资源没有释放吗

poilkjasd 2015-06-05 05:35:49
第一次运行能截图,第二次就不行了弹出选择视频设备的界面,求大神速解
代码如下
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Drawing.Imaging;
using System.Drawing;
using System.IO;

namespace vedio3
{
class Program
{

static void Main(string[] args)
{
cVideo video = new cVideo(Process.GetCurrentProcess().MainWindowHandle, 379, 316);
video.StartWebCam();
video.GrabImage(Process.GetCurrentProcess().MainWindowHandle, @"E:\c#code\vedio3\vedio3\bin\Debug\b.jpg");
video.CloseWebcam();
}
}

public class VideoAPI //视频API类
{
// 视频API调用
[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("coredll.dll")]

public static extern bool DeleteObject(IntPtr hgdiobj);
// 常量
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;
public const int WM_CAP_START = WM_USER;
public const int WM_CAP_SAVEDIB = WM_CAP_START + 25;
}
public class cVideo //视频类
{
private IntPtr lwndC; //保存无符号句柄
private IntPtr mControlPtr; //保存管理指示器
private int mWidth;
private int mHeight;
public cVideo(IntPtr handle, int width, int height)
{
mControlPtr = handle; //显示视频控件的句柄
mWidth = width; //视频宽度
mHeight = height; //视频高度
}
/// <summary>
/// 打开视频设备
/// </summary>
public void StartWebCam()
{
byte[] lpszName = new byte[100];
byte[] lpszVer = new byte[100];
VideoAPI.capGetDriverDescriptionA(0, lpszName, 100, lpszVer, 100);
this.lwndC = VideoAPI.capCreateCaptureWindowA(lpszName, VideoAPI.WS_CHILD | VideoAPI.WS_VISIBLE, 0, 0, mWidth, mHeight, mControlPtr, 0);
if (VideoAPI.SendMessage(lwndC, VideoAPI.WM_CAP_DRIVER_CONNECT, 0, 0))
{
VideoAPI.SendMessage(lwndC, VideoAPI.WM_CAP_SET_PREVIEWRATE, 100, 0);
VideoAPI.SendMessage(lwndC, VideoAPI.WM_CAP_SET_PREVIEW, true, 0);
}
}
/// <summary>
/// 关闭视频设备
/// </summary>
public void CloseWebcam()
{
VideoAPI.SendMessage(lwndC, VideoAPI.WM_CAP_DRIVER_DISCONNECT, 0, 0);
VideoAPI.DeleteObject(lwndC);
}
/// <summary>
/// 拍照
/// </summary>
/// <param name="path">要保存jpeg文件的路径</param>
public void GrabImage(IntPtr hWndC, string path)
{
IntPtr hBmp = Marshal.StringToHGlobalAnsi(path);

VideoAPI.SendMessage(lwndC, VideoAPI.WM_CAP_SAVEDIB, 0, hBmp.ToInt32());

Bitmap image = new Bitmap(path);

if (path.Contains("bmp"))
{
image.Save(path.Replace("bmp", "jpg"), ImageFormat.Jpeg);
image.Dispose();

if (System.IO.File.Exists(path))
{
try
{
System.IO.File.Delete(path);
}
catch (System.IO.IOException e)
{
return;
}
}
else
{
image.Save(path, ImageFormat.Jpeg);
image.Dispose();
}

}



}
}

}
...全文
330 18 打赏 收藏 转发到动态 举报
写回复
用AI写文章
18 条回复
切换为时间正序
请发表友善的回复…
发表回复
weixin_42284754 2018-08-03
  • 打赏
  • 举报
回复
细心的我慢慢拆开发现 SendMessage(hWndC, WM_CAP_DRIVER_CONNECT, 0, 0); 这一句发上两遍就解决了问题。。。前提还是需要点一下确定。。。。。。。。。原来是驱动问题。。。。。。
weixin_42284754 2018-08-03
  • 打赏
  • 举报
回复
其实我发现这个摄像头只能用一次。用Usb驱动的摄像头还好点。没什么错误。。。但是笔记本就不行了。。。。。今天再次研究,发现多点几次还是有反应的。。。所以,不就是点嘛。。。我多调用了一次。。。问题解决了。。。。
weixin_42284754 2018-08-03
  • 打赏
  • 举报
回复
按楼上的思路。两次调用start。中间需要点一次确定。。。百发百开。。。完美。。。
rronglin 2015-12-06
  • 打赏
  • 举报
回复
同楼上 点击确定后,再次弹出点击确定后能用了。
baidu_27419545 2015-11-18
  • 打赏
  • 举报
回复
你好,请问你的这个问题解决了没有?我现在也遇到这样的问题,第一次调用摄像头的时候正常,之后想再次调用就会弹出一个选择框让选择视频源,选择了之后也没反应
poilkjasd 2015-06-10
  • 打赏
  • 举报
回复
虽然没有解决,但是还是谢谢各位
tcmakebest 2015-06-06
  • 打赏
  • 举报
回复
引用 5 楼 poilkjasd 的回复:
[quote=引用 4 楼 tcmakebest 的回复:] 楼主是在哪个系统上的,需要把 DeleteObject 换下这个:
[DllImport("kernel32.dll")]
public static extern bool CloseHandle(IntPtr hWnd);
这个是下午调试时看别人加上去的,基本没有效果,WIN7 64位系统[/quote] 关闭的时候closehandle就能多次打开了。
poilkjasd 2015-06-06
  • 打赏
  • 举报
回复
求大神解决 顶
poilkjasd 2015-06-06
  • 打赏
  • 举报
回复
引用 11 楼 starfd 的回复:
是不是因为你文件同名的原因? 你将文件名改成按时间命名呢
执行一次删除图像还是没有效果
  • 打赏
  • 举报
回复
是不是因为你文件同名的原因? 你将文件名改成按时间命名呢
poilkjasd 2015-06-06
  • 打赏
  • 举报
回复
引用 9 楼 tcmakebest 的回复:
读取图片的时候这样防止图片文件被锁定
string pcfile = "xxxx.jpg";
FileStream pFileStream = new FileStream(pcfile, FileMode.Open, FileAccess.Read);
System.Drawing.Image img = Image.FromStream(pFileStream);
pFileStream.Close();
能不能麻烦帮我把代码改得能运行再贴出来,我是新手,怎么都该不对
tcmakebest 2015-06-06
  • 打赏
  • 举报
回复
读取图片的时候这样防止图片文件被锁定
string pcfile = "xxxx.jpg";
FileStream pFileStream = new FileStream(pcfile, FileMode.Open, FileAccess.Read);
System.Drawing.Image img = Image.FromStream(pFileStream);
pFileStream.Close();
poilkjasd 2015-06-06
  • 打赏
  • 举报
回复
引用 7 楼 tcmakebest 的回复:
[quote=引用 5 楼 poilkjasd 的回复:] [quote=引用 4 楼 tcmakebest 的回复:] 楼主是在哪个系统上的,需要把 DeleteObject 换下这个:
[DllImport("kernel32.dll")]
public static extern bool CloseHandle(IntPtr hWnd);
这个是下午调试时看别人加上去的,基本没有效果,WIN7 64位系统[/quote] 关闭的时候closehandle就能多次打开了。[/quote] public void CloseWebcam() { VideoAPI.SendMessage(lwndC, VideoAPI.WM_CAP_DRIVER_DISCONNECT, 0, 0); VideoAPI.CloseHandle(lwndC); } 还是没有清除 依旧报错啊
poilkjasd 2015-06-05
  • 打赏
  • 举报
回复
引用 4 楼 tcmakebest 的回复:
楼主是在哪个系统上的,需要把 DeleteObject 换下这个:
[DllImport("kernel32.dll")]
public static extern bool CloseHandle(IntPtr hWnd);
这个是下午调试时看别人加上去的,基本没有效果,WIN7 64位系统
tcmakebest 2015-06-05
  • 打赏
  • 举报
回复
楼主是在哪个系统上的,需要把 DeleteObject 换下这个:
[DllImport("kernel32.dll")]
public static extern bool CloseHandle(IntPtr hWnd);
poilkjasd 2015-06-05
  • 打赏
  • 举报
回复
引用 1 楼 lovelj2012 的回复:
第二次是代码抛出异常,还是怎么着?
IntPtr hBmp = Marshal.StringToHGlobalAnsi(path); VideoAPI.SendMessage(lwndC, VideoAPI.WM_CAP_SAVEDIB, 0, hBmp.ToInt32()); 应该是这一步图像数据没有没有传进去 Bitmap image = new Bitmap(path);显示参数无效,路径里面存的图片没有,这一步卡住
poilkjasd 2015-06-05
  • 打赏
  • 举报
回复
IntPtr hBmp = Marshal.StringToHGlobalAnsi(path); VideoAPI.SendMessage(lwndC, VideoAPI.WM_CAP_SAVEDIB, 0, hBmp.ToInt32()); 应该是这一步图像数据没有没有传进去 Bitmap image = new Bitmap(path);显示参数无效,路径里面存的图片没有,这一步卡主
江南小鱼 2015-06-05
  • 打赏
  • 举报
回复
第二次是代码抛出异常,还是怎么着?

110,538

社区成员

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

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

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