C#获取摄像头拍照显示图像

概述

之前有个需求,就是在web界面可以实现调用摄像头,用户把手机的个人二维码展示给摄像头,摄像头进行摄像识别用户。

其实本质就是保存图像二维码,在进行二维码识别。

下面来看看如何实现。

主要代码实现

1、初始化摄像头

  /// <summary>/// 初始化摄像头/// </summary>/// <param name="handle">控件的句柄</param>/// <param name="left">开始显示的左边距</param>/// <param name="top">开始显示的上边距</param>/// <param name="width">要显示的宽度</param>/// <param name="height">要显示的长度</param>public Pick(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);

2、开始显示图像

  /// <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;}

3、停止显示

  /// <summary>/// 停止显示/// </summary>public void Stop(){SendMessage(hWndC, WM_CAP_DRIVER_DISCONNECT, 0, 0);bStat = false;}

4、抓图

 /// <summary>/// 抓图/// </summary>/// <param name="path">要保存bmp文件的路径</param>public void GrabImage(string path){IntPtr hBmp = Marshal.StringToHGlobalAnsi(path);SendMessage(hWndC, WM_CAP_SAVEDIB, 0, hBmp.ToInt64());}/// <summary>/// 录像/// </summary>/// <param name="path">要保存avi文件的路径</param>public void Kinescope(string path){IntPtr hBmp = Marshal.StringToHGlobalAnsi(path);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);}

完整代码

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Windows.Forms;using System.Runtime.InteropServices;using com.google.zxing.qrcode.decoder;
using com.google.zxing.client;
using com.google.zxing.common;using System.Threading;public partial class Decode : System.Web.UI.Page
{// public delegate void SaveImg(Pick Pick1);/// <summary>/// 一个控制摄像头的类/// </summary>public class Pick{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;/// <summary>/// 初始化摄像头/// </summary>/// <param name="handle">控件的句柄</param>/// <param name="left">开始显示的左边距</param>/// <param name="top">开始显示的上边距</param>/// <param name="width">要显示的宽度</param>/// <param name="height">要显示的长度</param>public Pick(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(string path)
{IntPtr hBmp = Marshal.StringToHGlobalAnsi(path);SendMessage(hWndC, WM_CAP_SAVEDIB, 0, hBmp.ToInt64());}/// <summary>/// 录像/// </summary>/// <param name="path">要保存avi文件的路径</param>public void Kinescope(string path)
{IntPtr hBmp = Marshal.StringToHGlobalAnsi(path);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);}}protected void Page_Load(object sender, EventArgs e)
{}//void DoInit()//{//    System.Windows.Forms.Form frm = new Form();//    frm.Height = 300;//    frm.Width = 300;//    System.Windows.Forms.PictureBox Panel = new System.Windows.Forms.PictureBox();//    Panel.Height = 300;//    Panel.Width = 300;//    Panel.Visible = true;//    Panel.BackgroundImageLayout = ImageLayout.None;//    frm.Controls.Add(Panel);//    frm.TopMost = true;//    Pick p = new Pick(Panel.Handle, 0, 0, 300, 300);//    p.Start();//    frm.Show();//    p.Kinescope(Server.MapPath("img\\Decode2.avi"));//    p.GrabImage(Server.MapPath("img\\Decode1.bmp"));//    p.Stop();//    frm.Close();//    frm.Dispose();//}private void getQrcode()
{try{//ThreadStart worker = new ThreadStart(DoInit);//Thread th = new Thread(worker);//th.IsBackground = true;//th.Start();System.Windows.Forms.Form frm = new Form();frm.Height = 300;frm.Width = 300;System.Windows.Forms.PictureBox Panel = new System.Windows.Forms.PictureBox();Panel.Height = 300;Panel.Width = 300;Panel.Visible = true;Panel.BackgroundImageLayout = ImageLayout.None;frm.Controls.Add(Panel);frm.TopMost = true;Pick p = new Pick(Panel.Handle, 0, 0, 300, 300);p.Start();int i = 1;while (i <= 1){p.GrabImage(Server.MapPath("img\\Decode.bmp"));p.Kinescope(Server.MapPath("img\\Video.avi"));i++;}p.Stop();frm.Close();frm.Dispose();try{com.google.zxing.qrcode.QRCodeReader d = new com.google.zxing.qrcode.QRCodeReader();RGBLuminanceSource rg = new RGBLuminanceSource(new System.Drawing.Bitmap(Server.MapPath("img\\Decode.bmp")), new System.Drawing.Bitmap(Server.MapPath("img\\Decode.bmp")).Width, new System.Drawing.Bitmap(Server.MapPath("img\\Decode.bmp")).Height);com.google.zxing.LuminanceSource ls = rg;HybridBinarizer hb = new HybridBinarizer(ls);com.google.zxing.BinaryBitmap bm = new com.google.zxing.BinaryBitmap(hb);com.google.zxing.Result r = d.decode(bm);TextBox1.Text = r.Text;}catch (Exception ex){TextBox1.Text = "";//MessageBox.Show(ex.Message+"111");throw new Exception(ex.Message);}}catch (Exception ee){ee.ToString();}}protected void Timer1_Tick(object sender, EventArgs e)
{//getQrcode();}protected void Button1_Click(object sender, EventArgs e)
{getQrcode();}}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/301930.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

mysql列增减_Mysql基本操作——增减改查

1 创建数据库&#xff1a;两种方法&#xff1a;create database my_db;createdatabase if not exists my_db;2 删除数据库&#xff1a;两种方法&#xff1a;drop databasemy_db;drop database if exists my_db;3 创建表&#xff1a;createtable table_name (column_name column…

使用mysql-proxy 快速实现mysql 集群 读写分离

为什么80%的码农都做不了架构师&#xff1f;>>> 使用mysql-proxy 快速实现mysql 集群 读写分离 目前较为常见的mysql读写分离分为两种&#xff1a; 1、 基于程序代码内部实现&#xff1a;在代码中对select操作分发到从库&#xff1b;其它操作由主库执行&#xff1…

50万年薪程序员,被百万网民怒喷后,却迎来大撕逼

全世界只有3.14 % 的人关注了数据与算法之美前几天&#xff0c;我们年轻气盛的小卢写了一篇关于“程序员锁库跑路&#xff0c;最终致创业公司倒闭”的文章&#xff0c;语言有些偏激&#xff0c;数据汪在此替小卢给大伙道个歉&#xff0c;至于为何不让他本人来呢&#xff1f;因为…

.NET轻量级配置中心AgileConfig

描述基于NetCore开发的轻量级配置中心&#xff0c;部署简单、配置简单&#xff0c;使用简单&#xff0c;可以根据个人或者公司需求采用。部署简答&#xff0c;最少只需要一个数据节点&#xff0c;支持docker部署支持多节点分布式部署来保证高可用配置支持按照应用隔离&#xff…

php网页连mysql_php - 如何在单个网页上连接多个MySQL数据库?

php - 如何在单个网页上连接多个MySQL数据库&#xff1f;我将信息分散在几个数据库中&#xff0c;并希望使用PHP将所有信息放到一个网页上。 我想知道如何连接到单个PHP网页上的多个数据库。我知道如何使用以下方法连接到单个数据库&#xff1a;$dbh mysql_connect($hostname,…

Redis主从持久化测试

1:redis主从环境&#xff0c;均未开启持久化&#xff1b;当主实例宕机&#xff0c;从实例上的数据不受影响&#xff1b;当主恢复后&#xff0c;主实例上的数据将会继续同步到从实例&#xff0c;即原来的值将变为空值&#xff1b;[rootserver11 ~]# /usr/local/redis2/bin/redis…

人生苦短,我用Python!

在大数据时代&#xff0c;信息更新非常快速&#xff0c;计算机语言也犹如雨后春笋般被我们所熟知。C语言、C、Java等可谓是各领风骚、独占鳌头&#xff0c;而Python则是一门近几年崛起很快也很火的编程语言。虽说编程语言难分好坏&#xff0c;各有千秋。但Python到底有什么魔力…

【OpenCV学习】OpenMP并行化实例

作者&#xff1a;gnuhpc 出处&#xff1a;http://www.cnblogs.com/gnuhpc/ #include "cv.h" #include "highgui.h" #include <stdio.h> #include <stdlib.h> #include <omp.h>void EdgeOpenMP(IplImage *src,IplImage *dst,int thresh) …

一探即将到来的 C# 10

前言本来因为懒不想写这篇文章&#xff0c;但是不少人表示有兴趣&#xff0c;于是最后决定还是写一下。.NET 6 最近几个预览版一直都在开发体验&#xff08;如 hot reload、linker 等&#xff09;、平台支持&#xff08;如 Android、iOS 等&#xff09;、工具链&#xff08;如 …

预售┃没有标题,配得上这款“俄罗斯方块”

▲数据汪特别推荐点击上图进入玩酷屋在之前的文章时&#xff0c;马斯提到数学存在一种现象叫“梯次掉队”&#xff0c;原因在于孩子的数学思维地基没有打牢。&#xff08;传送门&#xff09;提到初中孩子需要空间想象能力时&#xff0c;很多父母疑惑为何需要&#xff1f;关于这…

c mysql binlog_Mysql Binlog

一&#xff0e;Mysql Binlog格式介绍Mysql binlog日志有三种格式&#xff0c;分别为Statement,MiXED,以及ROW&#xff01;1.Statement&#xff1a;每一条会修改数据的sql都会记录在binlog中。优点&#xff1a;不需要记录每一行的变化&#xff0c;减少了binlog日志量&#xff0c…

读Getting Started With Windows PowerShell笔记

使用中Powershell的操作跟Linux中的终端操作很多地方是一致的&#xff0c;当然&#xff0c;还是有着Windows自己的特色&#xff0c;比如&#xff0c;不分大小写。之前命令行中的命令大部分在这里也可以用&#xff0c;而且用法一样。选中后点右键&#xff0c;即复制到剪切板。不…

NET问答: String 和 string 到底有什么区别?

咨询区 Peter O.&#xff1a;开门见山&#xff0c;参考如下例子&#xff1a;string s "Hello world!"; String s "Hello world!";请问这两者有什么区别&#xff0c;在实际使用上要注意一些什么&#xff1f;回答区 Derek Park&#xff1a;string 是 C# 中…

mysql 5.7.6 5.7.19_MySQL数据库之Mysql 5.7.19 免安装版遇到的坑(收藏)

本文主要向大家介绍MySQL数据库之Mysql 5.7.19 免安装版遇到的坑(收藏)了 &#xff0c;通过具体的内容向大家展现&#xff0c;希望对大家学习MySQL数据库有所帮助。1、从官网下载64位zip文件。2、把zip解压到一个位置&#xff0c;此位置为安装为安装位置3、如果有以前的mysql 如…

LVS负载均衡-NET、DR模式配置

模型一&#xff1a;NAT模型的配置 实验环境&#xff1a; 采用VMware虚拟机&#xff0c;版本6.0.5 操作系统&#xff1a;Red Hat Enterprise Linux 5 (2.6.18) 虚拟机1&#xff1a;充当Director&#xff1a;网卡1(桥接):192.168.0.33&#xff08;对外&#xff09;&#xff0c;网…

编程语言的“别样”编年史

全世界只有3.14 % 的人关注了数据与算法之美代码是一门语言&#xff0c;这门语言搭建了人与计算机沟通的桥梁。通过编写代码&#xff0c;人类可以“命令”计算机开发网页、开发软件、搭建游戏... ... 这门语言并不是上帝的发明&#xff0c;它是前辈们发挥聪明才智创造出来的&am…

mysql目录树_无限级目录树+记忆节点状态(PHP+mysql)

借鉴 网友 iuhxq 的设计制作而成的目录树&#xff0c;在此感谢 iuhxq 的代码对我大帮助。特点&#xff1a;1、无限级节点。2、直接产生html代码&#xff0c;容易修改。3、目录清楚&#xff0c;类似于资源管理器&#xff0c;(csdn论坛的&#xff0c;层数多了就不容易分清楚层次了…

NET问答: 如何使用 C# 比较两个 byte[] 的相等性 ?

咨询区 Hafthor&#xff1a;我现在业务中遇到了一个场景&#xff1a;如何简洁高效的判断两个 byte[] 的相等性&#xff1f;我现在是这么实现的&#xff0c;有一点繁琐&#xff1a;static bool ByteArrayCompare(byte[] a1, byte[] a2) {if (a1.Length ! a2.Length)return false…

也可以改为while(input[0])或while(cininput[0])

2019独角兽企业重金招聘Python工程师标准>>> <<c primer plus>> // static.cpp -- using a static local variable #include <iostream> // constants const int ArSize 10; // function prototype void strcount(const char * str); int main()…

.NET Core HttpClient请求异常分析

【导读】最近项目上每天间断性捕获到HttpClient请求异常&#xff0c;感觉有点奇怪&#xff0c;于是乎观察了两三天&#xff0c;通过日志以及对接方沟通确认等等&#xff0c;查看对应版本源码&#xff0c;尝试添加部分配置发布后&#xff0c;观察十几小时暂无异常情况出现&#…