热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

深入解析MXOTDLL.dll在C#中的应用与优化策略

本文深入探讨了MXOTDLL.dll在C#环境中的应用与优化策略。针对近期公司从某生物技术供应商采购的指纹识别设备,该设备提供的DLL文件是用C语言编写的。为了更好地集成到现有的C#系统中,我们对原生的C语言DLL进行了封装,并利用C#的互操作性功能实现了高效调用。此外,文章还详细分析了在实际应用中可能遇到的性能瓶颈,并提出了一系列优化措施,以确保系统的稳定性和高效运行。

从几天公司从中正生物采购了一些指纹设备,要用到自己的系统里面,指纹供应商提供的DLL是C++写的,我用C# 重新写了一下

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.IO;
using System.Drawing;
using System.Drawing.Imaging;
using System.ComponentModel;

namespace EC.Shop.WindowsForms
{
///
/// 指纹验证程序 lyhuc
///

public class FingerprintHelper
{

[DllImport(
"MXOTDLL.dll")]
public static extern int IsMxUsbDevice();

[DllImport(
"MXOTDLL.dll", EntryPoint = "mxUsbGetImage", CharSet = CharSet.Auto)]
public static extern int mxUsbGetImage(byte[] ImageBuf, long nTimeOut);

[DllImport(
"MXOTDLL.dll")]
public static extern void mxCancelGetImage();

[DllImport(
"MXOTDLL.dll")]
public static extern int IsMxGetImage();

[DllImport(
"MXOTDLL.dll")]
public static extern void mxGetDeviceVersion(string szVersion);

[DllImport(
"MXOTDLL.dll")]
public static extern int mxWriteDevSN(string pData, int nLength);

[DllImport(
"MXOTDLL.dll")]
public static extern int mxReadDevSN(string pData, int nLength);

[DllImport(
"MXOTDLL.dll")]
public static extern int mxGetMBBase64(byte[] tzBuf1, byte[] tzBuf2, byte[] tzBuf3, byte[] mbBuf);

[DllImport(
"MXOTDLL.dll")]
public static extern int mxGetTzBase64(byte[] input, byte[] tzBuf);

[DllImport(
"MXOTDLL.dll")]
public static extern int mxFingerMatchBase64(byte[] mb, byte[] tz, int level);

private byte[] imageBuf;

public byte[] FingerByteArray
{
get { return imageBuf; }
}

public FingerprintHelper()
{
imageBuf
= new Byte[256 * 304];
}

///
/// 是否连接USB
///

public bool IsConnection
{
get { return (IsMxUsbDevice() == 0) ? true : false; }
}


///
/// 取消正在进行获取指纹图像操作
///

public void CancelGetImage()
{
mxCancelGetImage();
}

///
/// 是否正在进行获取指纹图像操作
///

public bool IsGetImage()
{
if (IsMxGetImage() == 0) return true;
return false;
}

///
/// 获取版本信息
///

public string GetDeviceVersion()
{
string version = "";
mxGetDeviceVersion(version);
return version;
}

///
/// 从指纹仪中,获取指纹图像。
///

/// 图像路径
/// 超时时间
///
public Image GetImage(Size size)
{
if (GetFingerCode()!=null)
{
return ToGrayBitmap(imageBuf, size);
}

return null;
}

///
/// 得到指纹特征
///

public byte[] Tz
{
get { return GetTzBase64(imageBuf); }
}

///
/// 得到指纹特征
///

///
///
private byte[] GetTzBase64(byte[] buf)
{
byte[] tzBuf = new byte[344];
mxGetTzBase64(buf, tzBuf);
return tzBuf;
}

///
/// 得到指纹byte数组
///

///
public byte[] GetFingerCode()
{
int ret;
string str = "";


ret
= mxUsbGetImage(imageBuf, 0);
switch (ret)
{
case 0:
str
= "采集图像成功!";
break;
case -1:
str
= "打开USB设备失败!";
break;
case -2:
str
= "用户取消操作!";
break;
case -3:
str
= "等待手指超时!";
break;
case -4:
str
= "采集图像失败!";
break;
default:
str
= "异常!";
break;
}

if (ret == 0)
{
return imageBuf;
}

return null;
}

///
/// 从当前指纹中匹配对应的BASE64
///

///
///
public bool FingerMatch(byte[] tz )
{
return FingerMatchBase64(GetTzBase64(GetFingerCode()), tz, 3);
}

///
/// 从两个特征中判断是否是同一个指纹
///

///
///
public bool FingerMatch(byte[] tz1, byte[] tz2)
{
return FingerMatchBase64(tz1, tz2, 3);
}


///
/// 匹配数据库中的每行特征
///

///
///
///
///
private bool FingerMatchBase64(byte[] mb, byte[] tz, int level = 3)
{
bool result=mxFingerMatchBase64(mb, tz, level)==0?true:false;
return result;
}

///
/// 将Bytes转换成Bitmap
///

///
///
///
private unsafe Bitmap BytesToBmp(byte[] bmpBytes, Size imageSize)
{
Bitmap bmp
= new Bitmap(imageSize.Width, imageSize.Height);

BitmapData bData
= bmp.LockBits(new Rectangle(0, 0, imageSize.Width, imageSize.Height),
ImageLockMode.ReadWrite,
PixelFormat.Format24bppRgb);

// Copy the bytes to the bitmap object
Marshal.Copy(bmpBytes, 0, bData.Scan0, bmpBytes.Length);
bmp.UnlockBits(bData);

return bmp;
}


///
/// 将一个字节数组转换为8bit灰度位图
///

/// 显示字节数组
/// 图像宽度
/// 图像高度
/// 位图
public Bitmap ToGrayBitmap(byte[] rawValues, Size imageSize)
{
int width = imageSize.Width;
int height = imageSize.Height;
//// 申请目标位图的变量,并将其内存区域锁定
Bitmap bmp = new Bitmap(width, height, PixelFormat.Format8bppIndexed);
BitmapData bmpData
= bmp.LockBits(new Rectangle(0, 0, width, height),
ImageLockMode.WriteOnly, PixelFormat.Format8bppIndexed);

//// 获取图像参数
int stride = bmpData.Stride; // 扫描线的宽度
int offset = stride - width; // 显示宽度与扫描线宽度的间隙
IntPtr iptr = bmpData.Scan0; // 获取bmpData的内存起始位置
int scanBytes = stride * height; // 用stride宽度,表示这是内存区域的大小

//// 下面把原始的显示大小字节数组转换为内存中实际存放的字节数组
int posScan = 0, posReal = 0; // 分别设置两个位置指针,指向源数组和目标数组
byte[] pixelValues = new byte[scanBytes]; //为目标数组分配内存

for (int x &#61; 0; x < height; x&#43;&#43;)
{
//// 下面的循环节是模拟行扫描
for (int y &#61; 0; y < width; y&#43;&#43;)
{
pixelValues[posScan
&#43;&#43;] &#61; rawValues[posReal&#43;&#43;];
}
posScan
&#43;&#61; offset; //行扫描结束&#xff0c;要将目标位置指针移过那段“间隙”
}

//// 用Marshal的Copy方法&#xff0c;将刚才得到的内存字节数组复制到BitmapData中
System.Runtime.InteropServices.Marshal.Copy(pixelValues, 0, iptr, scanBytes);
bmp.UnlockBits(bmpData);
// 解锁内存区域

//// 下面的代码是为了修改生成位图的索引表&#xff0c;从伪彩修改为灰度
ColorPalette tempPalette;
using (Bitmap tempBmp &#61; new Bitmap(1, 1, PixelFormat.Format8bppIndexed))
{
tempPalette
&#61; tempBmp.Palette;
}
for (int i &#61; 0; i < 256; i&#43;&#43;)
{
tempPalette.Entries[i]
&#61; Color.FromArgb(i, i, i);
}

bmp.Palette
&#61; tempPalette;

//// 算法到此结束&#xff0c;返回结果
return bmp;
}


///
/// 从三个指纹特征中合并指纹模板
///

///
public byte[] GetUoinMBBase64(byte[] a,byte[] b,byte[] c)
{
byte[] mb &#61; new byte[344];
mxGetMBBase64(a, b, c, mb);

return mb;
}

///
/// 将字符串转为byte数组
///

///
///
public byte[] ConvertStringToByteArrary(string s)
{
return System.Text.Encoding.Default.GetBytes(s);
}


///
/// 将byte数组转为字符串
///

///
///
public string ConvertByteArraryToString(byte[] tz)
{
return System.Text.Encoding.Default.GetString(tz);
}

/**/
///
/// 变成黑白图
///

/// 原始图
/// 模式。0:加权平均 1:算数平均
///
private Bitmap ToGray(byte[] bmpBytes, Size imageSize, int mode &#61; 1)
{
Bitmap bmp
&#61; new Bitmap(imageSize.Width, imageSize.Height, PixelFormat.Format24bppRgb);

byte[] newBytes &#61; new byte[256 * 304];
int w &#61; bmp.Width;
int h &#61; bmp.Height;



try
{
byte newColor &#61; 0;
BitmapData srcData
&#61; bmp.LockBits(new Rectangle(0, 0, w, h), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb);
Marshal.Copy(bmpBytes,
0, srcData.Scan0, bmpBytes.Length);
unsafe
{
byte* p &#61; (byte*)srcData.Scan0.ToPointer();
for (int y &#61; 0; y < h; y&#43;&#43;)
{
for (int x &#61; 0; x < w; x&#43;&#43;)
{

if (mode &#61;&#61; 0) // 加权平均
{
newColor
&#61; (byte)((float)p[0] * 0.114f &#43; (float)p[1] * 0.587f &#43; (float)p[2] * 0.299f);
}
else    // 算数平均
{
newColor
&#61; (byte)((float)(p[0] &#43; p[1] &#43; p[2]) / 3.0f);
}
p[
0] &#61; newColor;
p[
1] &#61; newColor;
p[
2] &#61; newColor;

p
&#43;&#61; 3;
}
p
&#43;&#61; srcData.Stride - w * 3;
}
bmp.UnlockBits(srcData);
return bmp;
}
}
catch
{
return null;
}

}

}
}

转:https://www.cnblogs.com/hubj/archive/2011/03/18/1988214.html



推荐阅读
  • 本文详细介绍了Java编程语言中的核心概念和常见面试问题,包括集合类、数据结构、线程处理、Java虚拟机(JVM)、HTTP协议以及Git操作等方面的内容。通过深入分析每个主题,帮助读者更好地理解Java的关键特性和最佳实践。 ... [详细]
  • UNP 第9章:主机名与地址转换
    本章探讨了用于在主机名和数值地址之间进行转换的函数,如gethostbyname和gethostbyaddr。此外,还介绍了getservbyname和getservbyport函数,用于在服务器名和端口号之间进行转换。 ... [详细]
  • 20100423:Fixes:更新批处理,以兼容WIN7。第一次系统地玩QT,于是诞生了此预备式:【QT版本4.6.0&#x ... [详细]
  • Ihaveastringwithquotesaroundthepathasfollows:我在路径周围有一个带引号的字符串,如下所示:C:\ProgramFiles(x ... [详细]
  • 本文详细探讨了KMP算法中next数组的构建及其应用,重点分析了未改良和改良后的next数组在字符串匹配中的作用。通过具体实例和代码实现,帮助读者更好地理解KMP算法的核心原理。 ... [详细]
  • ServiceStack与Swagger的无缝集成指南
    本文详细介绍了如何在ServiceStack项目中集成Swagger,以实现API文档的自动生成和在线测试。通过本指南,您将了解从配置到部署的完整流程,并掌握如何优化API接口的开发和维护。 ... [详细]
  • 2023年京东Android面试真题解析与经验分享
    本文由一位拥有6年Android开发经验的工程师撰写,详细解析了京东面试中常见的技术问题。涵盖引用传递、Handler机制、ListView优化、多线程控制及ANR处理等核心知识点。 ... [详细]
  • 本文探讨了领域驱动设计(DDD)的核心概念、应用场景及其实现方式,详细介绍了其在企业级软件开发中的优势和挑战。通过对比事务脚本与领域模型,展示了DDD如何提升系统的可维护性和扩展性。 ... [详细]
  • Python处理Word文档的高效技巧
    本文详细介绍了如何使用Python处理Word文档,涵盖从基础操作到高级功能的各种技巧。我们将探讨如何生成文档、定义样式、提取表格数据以及处理超链接和图片等内容。 ... [详细]
  • Windows 7 64位系统下Redis的安装与PHP Redis扩展配置
    本文详细介绍了在Windows 7 64位操作系统中安装Redis以及配置PHP Redis扩展的方法,包括下载、安装和基本使用步骤。适合对Redis和PHP集成感兴趣的开发人员参考。 ... [详细]
  • 本文介绍了如何在 C# 和 XNA 框架中实现一个自定义的 3x3 矩阵类(MMatrix33),旨在深入理解矩阵运算及其应用场景。该类参考了 AS3 Starling 和其他相关资源,以确保算法的准确性和高效性。 ... [详细]
  • 本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ... [详细]
  • 本文介绍了Java并发库中的阻塞队列(BlockingQueue)及其典型应用场景。通过具体实例,展示了如何利用LinkedBlockingQueue实现线程间高效、安全的数据传递,并结合线程池和原子类优化性能。 ... [详细]
  • 本文探讨了在使用Azure Active Directory进行用户身份验证时,结合AddAuthentication和RequireAuthenticatedUser的必要性及其潜在冗余问题。 ... [详细]
  • 本文探讨了在 ASP.NET MVC 5 中实现松耦合组件的方法。通过分离关注点,应用程序的各个组件可以更加独立且易于维护和测试。文中详细介绍了依赖项注入(DI)及其在实现松耦合中的作用。 ... [详细]
author-avatar
apiaoapiao_622
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有