指纹识别matlab实现,源代码带有大量注解,适合作为毕业设计,内附有毕业设计论文模板参考
2019-12-21 20:16:08 413KB 指纹识别
1
花了10块钱买的,希望对大家有帮助。/*############################################################################# * 文件名:file.c * 功能: 实现了指纹相关文件的操作 * modified by PRTsinghua@hotmail.com #############################################################################*/ #include #include #include #include "file.h" /* 对象的这些接口实现是私有的,不必为用户所知 */ typedef struct iFvsFile_t { FILE *pf; /* 文件指针 */ } iFvsFile_t; /****************************************************************************** * 功能:创建一个新的文件对象,只有在创建之后,文件对象才能为其它函数所用。 * 参数:无 * 返回:若创建失败,返回NULL;否则返回新的对象句柄。 ******************************************************************************/ FvsFile_t FileCreate() { iFvsFile_t* p = NULL; p = (iFvsFile_t*)malloc(sizeof(iFvsFile_t)); if (p!=NULL) p->pf = NULL; return (FvsFile_t)p; } /****************************************************************************** * 功能:破坏一个已经存在的文件对象,在毁坏之后,文件对象不能再为其它函数所用。 * 参数:file 即将删除的文件对象指针 * 返回:无返回值 ******************************************************************************/ void FileDestroy(FvsFile_t file) { iFvsFile_t* p = NULL; if (file==NULL) return; /* 关闭文件,如果它还打开着 */ (void)FileClose(file); p = file; free(p); } /****************************************************************************** * 功能:打开一个新的文件。一个文件可以读打开,写打开,或者被创建。 * 参数:file 文件对象 * name 待打开文件的名字 * flags 打开标志 * 返回:错误编号 ******************************************************************************/ FvsError_t FileOpen(FvsFile_t file, const FvsString_t name, const FvsFileOptions_t flags) { iFvsFile_t* p = (iFvsFile_t*)file; char strFlags[10]; int nflags = (int)flags; /* 关闭文件,如果已经打开 */ (void)FileClose(p); strcpy(strFlags, ""); if ( (nflags & FvsFileRead)!=0 && (nflags & FvsFileWrite)!=0 ) strcat(strFlags, "rw"); else { if ((nflags & FvsFileRead)!=0) strcat(strFlags, "r"); if ((nflags & FvsFileWrite)!=0) strcat(strFlags, "w"); } strcat(strFlags, "b"); if ((nfl
2019-12-21 20:13:20 42KB zwsb
1
matlab 指纹识别 很好的课程设计代码
2019-12-21 20:10:50 1KB matlab 指纹识别
1
指纹识别的算法 C# 可以帮助大家开发者类应用程序。
2019-12-21 20:10:47 421KB C# 指纹识别
1
JAVA指纹识别(uaru4000B指纹仪) 采集与 验证功能 放在tomcat下就可以实现 access数据库
2019-12-21 20:10:41 2.58MB java指纹识别 uaru4000B 指纹仪 uru4K
1
完整的指纹识别程序,包括预处理,特征提取,匹配等
2019-12-21 20:09:15 15.77MB vc 指纹 源码
1
matlab源代码+指纹库,matlab GUI完整,运行ok!!!!
2019-12-21 20:07:10 6.24MB 指纹识别
1
指纹图像库;用于指纹识别实验;相当有用;
2019-12-21 20:02:41 43.81MB 指纹识别 指纹匹配 指纹库
1
御剑各项工具应有尽有.指纹识别,注入,检测与解密,后台扫描工具,编码转换
1
ZKFinger SDK_Ver2.3.3.5,包含5.0版的 biokey.ocx、指纹仪驱动安装包、ZKFinger SDK用户手册、VC 和 C# 的示例程序。在项目中需要用到指纹仪,先买了个 U.R.U 4000B 指纹仪,下载了很多驱动都无效,最后联系厂家获得了上面的开发包,在Win7 64位操作系统,U.R.U 4000B 指纹仪上测试成功,希望能够帮助到有需要的人。
2019-12-21 19:57:30 42.47MB 中控 指纹识别 biokey SDK
1