登录
首页 » Windows开发 » opencv_finger_recognition

opencv_finger_recognition

于 2022-07-27 发布 文件大小:1.44 MB
0 173
下载积分: 2 下载次数: 1

代码说明:

本文件概要介绍组成 Fngprnt 应用程序的每个文件的内容。 Fngprnt.vcproj 这是使用应用程序向导生成的 VC++ 项目的主项目文件。  它包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 Fngprnt.h 这是应用程序的主要头文件。它包括其他项目特定的头文件(包括 Resource.h),并声明 CFngprntApp 应用程序类。 Fngprnt.cpp 这是包含应用程序类 CFngprntApp 的主要应用程序源文件。 Fngprnt.rc 这是程序使用的所有 Microsoft Windows 资源的列表。它包括 RES 子目录中存储的图标、位图和光标。此文件可以直接在 Microsoft Visual C++ 中进行编辑。项目资源位

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • System will automatically delete the directory of debug and release, so please d...
    System will automatically delete the directory of debug and release, so please do not put files on these two directory System will automatically delete the directory of debug and release, so please do not put files on these two directory
    2022-04-22 14:44:37下载
    积分:1
  • 内存修改
    #ifndef _SEARCH_THREAD_H_ #define _SEARCH_THREAD_H_ #define PROCESS_SIZE    1000    // 进程条的最大值 #define THREAD_NUM     1     // 搜索内存线程个数 #define WM_FIND_MEMORY    (WM_USER + 1)  // 找到搜索数值 #define WM_FIND_PROGRESS   (WM_USER + 2)  // 搜索进度 #define WM_SEARCH_FINISH   (WM_USER + 3)  // 搜索线程完成 #define SEARCH_STRING_MAX_LENGTH 255     // 搜索字符串的最大长度 class CModifyMemoryDlg; // 搜索线程函数 DWORD WINAPI SearchMemory(LPVOID lpParameter); // 精确搜索 void EquSearch(CModifyMemoryDlg *pDlg, BYTE *lpBuf, MEMORY_BASIC_INFORMATION &mbi); // 大于搜索 void GreaterSearch(CModifyMemoryDlg *pDlg, BYTE *lpBuf, MEMORY_BASIC_INFORMATION &mbi); // 小于搜索 void
    2022-06-18 16:10:54下载
    积分:1
  • 用VMWare打压缩包里的虚拟机配置文件,运行后可以自动引导到Windows CE桌面。Windows CE runtime kernel支持: 6...
    用VMWare打开压缩包里的虚拟机配置文件,运行后可以自动引导到Windows CE桌面。Windows CE runtime kernel支持: 64MB内存 音频 2GB IDE硬盘 USB 1.1 HOST (UHCI) 网卡 RS232串口(输出到文件) HIVE-BASED注册表 没有VMWare的可以到VMWare的主页下载VMware Player,免费的。 BSP是在EMULATOR的BSP基础上修改而成,主要是增加了对USB 1.1 HOST和VMWare虚拟网卡的支持。注意使用前必须先导入CEC目录下的vmcepc.cec文件。-Open the compressed bag with VMWare virtual machine configuration files, running can be automatically directed to the Windows CE desktop. Windows CE runtime kernel support: 64MB RAM Audio 2GB IDE hard drive USB 1.1 HOST (UHCI) Serial RS232 adapter (output to a file) HIVE-BASED registry there is no VMWare can go to VMWare" s home page to download VMware Player, free of charge. BSP is EMULATOR changes made on the basis of the BSP, the main is the addition of pairs of USB 1.1 HOST and the VMWare virtual network card support. Attention must be imported before use CEC directory vmcepc.cec file.
    2022-07-13 08:59:05下载
    积分:1
  • 该过程利用了windows gdi+ 可实现文件格式转换。
    该过程利用了windows gdi+ 可实现文件格式转换。-The process of using the windows gdi+ file format conversion can be achieved.
    2023-09-04 19:55:03下载
    积分:1
  • 大型多媒体视频会议服务器端和客户端源码 功能很强大 界面有好...
    大型多媒体视频会议服务器端和客户端源码 功能很强大 界面有好-Large-scale multi-media video conferencing server-side and client-source features a very powerful interface has a good
    2022-05-23 09:17:44下载
    积分:1
  • decopiler EX4 对 MQL 免费
    / * Gerado por EX4 MQ4 反编译 V4.0.224.1] 网站 ︰ http://purebeam.biz 电子邮件 ︰ purebeam@gmail.com * / #property 版权"德版权所有 © 2009,Centrando 大" # 链接德主管""
    2022-08-08 08:53:27下载
    积分:1
  • 酒店管理系统
    这是为您的企业提供的酒店管理系统。只需单击即可跟踪所有事务。此应用程序由visualbasic.Net开发
    2022-07-13 13:31:57下载
    积分:1
  • 用 C++ 创建简单的 Win32 服务程序(NTServCpl) 详细信息 < NT服务 > 《用 C++ 创建简单的 Win32 服务程序》一文...
    用 C++ 创建简单的 Win32 服务程序(NTServCpl) 详细信息 < NT服务 > 《用 C++ 创建简单的 Win32 服务程序》一文的例子代码。描述如何用 Visual C++ 创建 Windows NT 服务程序。创建该服务仅用到一个 C++ 类,这个类提供服务与操作系统之间一个简单的接口。使用这个类实现自己的服务非常简单,只要改写少数几个基类中的虚拟函数即可。文中有三个源代码参考例子:这是其中之一―― NTServCpl:是一个控制面版程序,用来控制 NTService 服务; 其余两个分别为: NTService:是一个简单的 Win32 服务,它就是用本文所描述的方法建立的; NTServCtrl:是一个独立的程序例子,用它可以监控某个 Win32 服务;-create simple Win32 services (NTServCpl) detailed information lt; NT services gt; "C create simple Win32 service procedures," a text of the code examples. Describe how to use Visual C create Windows NT service procedures. Creation of the service only to a category C, the category of services provided between an operating system with a simple interface. Use this category to realize their services are very simple, as long as rewriting a few of the base class function can be virtual. The text has three reference source code example : This is one of them-- NTServCpl : console is a procedure used to control NTService services; The remai
    2022-08-09 22:47:02下载
    积分:1
  • 托盘的功能实现,对于学习十分有用.建议新手学习使用
    托盘的功能实现,对于学习十分有用.建议新手学习使用-Realization of the function tray for the study very useful. Recommended novice learning to use
    2022-01-24 16:31:34下载
    积分:1
  • 决策树的并行算法 及决策树的研究,值得下载
    决策树的并行算法 及决策树的研究,值得下载-Parallel Decision Tree Algorithm and Decision Tree Research
    2023-05-03 10:25:07下载
    积分:1
  • 696516资源总数
  • 106668会员总数
  • 21今日下载