在Ubuntu中实现人脸识别登录的完整步骤
更新时间:2020年06月28日 08:32:58 作者:Codsir
这篇文章主要给大家介绍了关于在Ubuntu中实现人脸识别登录的完整步骤,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
1、安装Howdy: howdy项目地址
sudo add-apt-repository ppa:boltgolt/howdy sudo apt update sudo apt install howdy
2、添加自己的face
sudo howdy add
报错:
Enter a label for this new model [Initial model] (max 24 characters): tiger Camera path is not configured correctly, please edit the 'device_path' config value. Exception ignored in: <bound method VideoCapture.__del__ of <recorders.video_capture.VideoCapture object at 0x7f6bc5be02b0>> Traceback (most recent call last): File "/lib/security/howdy/recorders/video_capture.py", line 55, in __del__ self.internal.release() AttributeError: 'VideoCapture' object has no attribute 'internal'
解决方案:
$ sudo apt-get install v4l-utils # 查看摄像头路径 $ v4l2-ctl --list-devices USB 2.0 Camera: USB Camera (usb-0000:03:00.0-14): /dev/video0 $ sudo howdy config # 接下来更改config中的device_path = /dev/video0
$ sudo howdy add Adding face model for the user tiger Enter a label for this new model [Initial model] (max 24 characters): tiger Please look straight into the camera Scan complete Added a new model to tiger
3、测试
打开一个terminal
$ sudo -i Identified face as tiger
$ sudo howdy test Opening a window with a test feed Press ctrl+C in this terminal to quit Click on the image to enable or disable slow mode Closing window
4、屏幕锁屏后,enter进入输密码界面,程序就会识别出人,直接解锁。
5、其它命令
Usage:
howdy [-U user] [-y] command [argument]
Command | Description |
---|---|
add | Add a new face model for an user |
clear | Remove all face models for an user |
config | Open the config file in your default editor |
disable | Disable or enable howdy |
list | List all saved face models for an user |
remove | Remove a specific model for an user |
snapshot | Take a snapshot of your camera input |
test | Test the camera and recognition methods |
version | Print the current version number |
总结
到此这篇关于在Ubuntu中实现人脸识别登录的文章就介绍到这了,更多相关Ubuntu人脸识别登录内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
您可能感兴趣的文章:
- 解决ubuntu 16.04安装mysql5.7.17后,登录时出现ERROR 1045 (28000): Access denied for user ''root''@''localhost''问题
- 详解Ubuntu下ssh服务的安装与登陆(ssh远程登陆)
- ubuntu 14.04 忘记用户登录密码的图文解决方法
- ubuntu16.04登录后无dash,无启动栏launch,无menu bar只有桌面背景的快速解决办法
- ubuntu16.04服务器配置ssh免密码登录
- 详解Ubuntu14.04桥接网络设置与SSH登陆
- Ubuntu 远程登陆服务器 ssh的安装和配置详解
- ubuntu使用root用户登录/切换root权限的实现
- linux(ubuntu)用户连续N次输入错误密码进行登陆时自动锁定X分钟
- Ubuntu下如何设置ssh免密码登录安装
相关文章
apache使用.htaccess文件实现屏蔽wget下载网站内容
wget是一个从网络上自动下载文件的自由工具,支持通过HTTP、HTTPS、FTP三个最常见的TCP/IP协议下载,并可以使用HTTP代理。wget名称的由来是“World Wide Web”与“get”的结合。2014-07-07电脑意外关机后VMware中linux不能联网问题的解决方法
这篇文章主要为大家解决电脑意外关机后,再次开机启动VMware时发现linux不能联网的问题,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2019-03-03linux为repo 'AppStream'下载元数据失败的解决
这篇文章主要介绍了linux为repo 'AppStream'下载元数据失败的解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2023-06-06
最新评论