很完整很完整很完整的虹膜识别程序,包括边缘检测,归一化,用汉明矩进行特征匹配
行业分类-物理装置-一种基于双眼融合的虹膜识别神经网络模型训练方法.zip
行业资料-交通装置-一种基于虹膜识别的汽车驾驶系统.zip
行业分类-嵌入式设备-嵌入式双目虹膜识别器.zip
硕士学位虹膜识别答辩毕设PPT
2021-08-18 10:00:23 2.88MB 虹膜识别 模式识别 海明距离 东北大学
1
虹膜识别源码 public class Main { public Main(String filename) { System.out.println("\n\n\tIris Recognition\n\t(c)2004 Richard Midwinter\n\n"); System.out.println("Reading image..."); File file = new File(filename); if (file.exists()) { System.out.println("Image located..."); } else { System.out.println("Error! Check you've specified the correct path to the image and you have the permissions to view it"); System.exit(1); } BufferedImage bimg = null; try { bimg = ImageIO.read(file); /* Segmentation code */ Segment segment = new Segment(); segment.segment(bimg); /* Normal encoding */ /* Feature encoding */ } catch (Exception e) { System.out.println(e); } } public static void main(String[] args) { if (args.length != 1) System.out.println("Usage: java Main filename.jpg"); else new Main(args[0]); } private BufferedImage bimg; }
2021-08-13 09:28:09 1.29MB 虹膜识别
1
信息安全技术 虹膜识别系统技术要求.pdf
2021-08-13 09:04:22 1.8MB 虹膜识别系统技术要求
虹膜识别 包括虹膜定位 归一化 特征提取 匹配 可以对整个文件夹进行处理 改一下文件夹的路径即可,改变自osiris4.1 可以对文件夹进行操作
2021-08-01 22:43:38 28.7MB iris position matching osiris
1
目前效果最好的开源虹膜识别源代码,基于C++和OpenCV: http://svnext.it-sudparis.eu/svnview2-eph/ref_syst/Iris_Osiris_v4.1/ 该链接中包含使用文档和源代码,描述该算法的论文为: 《OSIRIS: An open source iris recognition software》2016 论文下载链接: http://www.docin.com/p-1389745651.html 这个源码非常优秀,效果很好,已经是4.1版了。 在Linux下编译运行,看看文档学会操作用起来很ez的。
2021-07-29 10:18:03 6.95MB 虹膜识别 生物识别 OSIRIS opencv
1