如何开始视网膜扫描项目?
你好 我必须为我的大学课程开发一个软件,该软件将执行视网膜扫描,即,如果提供图片,程序将检测到视网膜的位置。 但我不知道如何实施这个项目。请问有人可以提供相关信息吗?
hello
I have to develop a software for my college course that will perform retinal scan, i.e, if a picture is provided the location of the retina will be detected by the program.
But i have got no clue on how to implement this project. Can anyone please provide any relevant information?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我可能会开始研究如何实现人脸检测算法,然后以虹膜作为目标实现相同的算法。
下面是人脸检测算法的开源 Java 实现:此处
I would perhaps start out researching how a face detection algorithm is implemented, and then implement that same algorithm with an iris as the target.
Heres an open source Java implementation of a face detection algorithm: Here
大学课程是什么?希望您除了“开发一种算法来查找视网膜/虹膜”之外,还能获得更多指导(或者应该已经具备该领域的知识)。它可能可以通过形状识别或各种其他技术来完成,具体取决于图像的情况。我们是在谈论“这是一张脸的特写,找到眼睛”,还是“这是一张 10 个人的照片,找到眼睛”?在这两种情况下,算法将非常不同。
What is the college course? Hopefully you're given more guidance (or should already have knowledge in the area) beyond "develop an algorithm to find the retina/iris". It could probably be done with shape recognition, or various other techniques depending on what the image is like. Are we talking about "Here's a closeup of a face, find the eyes", or "Here's a picture of 10 people, find the eyes"? The algorithms will be very different in those two cases.