我可以使用 openCV 比较两张不同图像上的两张脸吗?
我对 openCV 很陌生,我看到它可以计算出脸部并返回一个矩形来指示脸部。我想知道 openCV 是否可以访问两张包含一张脸的图像,并且我希望 openCV 返回这两个人是否相同的可能性。
谢谢。
I am very new in openCV, I saw it could figure out the face and return a rectangle to indicate the face. I am wondering whether there is anyway for openCV to access two images, with which contains one face, and I expect openCV to return the possibility of whether those two people are the same.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
OpenCV 不提供完整的人脸识别引擎。
您可能想查看这项工作:一次性相似度内核 它提出了与您需要的类似的内容。它还提供 Matlab 代码。
OpenCV does not provide a full face recognition engine.
You might want to check out this work: The One-Shot Similarity Kernel which proposes something similar to what you need. It also provides Matlab code.