会挽雕弓如满月,西北望,射天狼。这篇文章主要讲述Deep Learning Enables You to Hide Screen when Your Boss is Approaching相关的知识,希望能为你提供帮助。
https://github.com/Hironsan/BossSensor/
背景介绍
学生时代,老师站在窗外的阴影挥之不去。大家在玩手机,看漫画,看小说的时候,总是会找同桌帮忙看着班主任有没有来。
文章图片
一转眼,曾经的翩翩少年毕业了,新的烦恼来了,在你刷知乎,看视频,玩手机的时候,老板来了! 不用担心,不用着急,基于最新的人脸识别+手机推送做出的BossComing。老板站起来的时候,BossComing会通过人脸识别发现老板已经站起来,然后通过手机推送发送通知“BossComing”,并且震动告诉你有情况。 效果展示 不明真相吃瓜群众和身后领导:
文章图片
身后领导扭头过来,马上被人脸识别程序发现,并标记为boss:
文章图片
手机收到推送,并震动:
文章图片
BossComing:
文章图片
是不是就像“同桌的他”,用胳膊肘不停地戳你,并且小声的说:老师来啦,来时来啦。 技术介绍 人脸识别技术 face_recognition Theworld\'ssimplestfacialrecognitionapiforpythonandthecommandline ageitgey/face_recognition 手机推送技术 jpush-api-python-client JPush\'sofficiallysupportedPythonclientlibraryforaccessingJPushAPIs. jpush/jpush-api-python-client 依赖安装 pipinstallface_recognition pipinstalljpush 使用教程 1.添加bossimage 2.配置文件 修改bosscoming文件中的load_image_file参数 3.JPush配置,这样你的手机才可以收到推送。 4.可以直接使用JPush官方提供的Demo用来接收通知。 JPush文档:JPush产品简介-极光文档 5.运行命令 pythonbosscoming.py 体验人脸识别部分命令: pythonbosswatching.py 打开电脑上摄像头,开始捕捉画面。然后调整角度,对准需要观察的位置。 项目说明 受《在你上司靠近你座位时,用人脸识别技术及时屏幕切换》启发,文章地址:,所介绍的项目是BossSensor:。因为这个项目所需要的依赖比较多,而且我运行有问题,所以换了另外一个库来实现。 BossComing项目地址: 代码还不完善,仅供娱乐(Justforfun!)。在你上司靠近你座位时,用人脸识别技术及时屏幕切换Hironsan/BossSensorfendouai/BossComing 参考引用 ageitgey/face_recognitionjpush/jpush-api-python-clientHironsan/BossSensor 雷锋网按:原作者小灰灰,本文原载于。雷锋网已获得作者授权转载。知乎专栏 https://baijiahao.baidu.com/po/feed/share?wfr=spider& for=pc& context=%7B%22sourceFrom%22%3A%22bjh%22%2C%22nid%22%3A%22news_3290793327312572388%22%7DIntroduction
When you are working, you have browsed information that is not relevant to your work, haven’t you?
I feel awkward when my boss is creeping behind. Of course, I can switch the screen in a hurry, but such behavior is suspicious, and sometimes I don’t notice him. So, in order to switch the screen without being suspected, I create a system that automatically recognizes that he is approaching to me and hides the screen.
Specifically, Keras is used to implement neural network for learning his face, a web camera is used to recognize that he is approaching, and switching the screen.
Mission
The mission is to switch the screen automatically when my boss is approaching to me.
The situation is as follows:
文章图片
It is about 6 or 7 meters from his seat to my seat. He reaches my seat in 4 or 5 seconds after he leaves his seat. Therefore, it is necessary to hide the screen during this time. There’s not much time!
Strategy
Maybe you have various strategies, but my strategy is following.
First, let the computer learn the face of the boss with deep learning. Then, set up a web camera at my desk and switch the screen when the web camera captures his face. It’s a perfect strategy. Let’s call this wonderful system Boss Sensor.
文章图片
System Architecture
The simple system architecture of the Boss Sensor is as follows.
文章图片
Web camera take an image in real time.
Learned model detect and recognize face for the taken image.
If the recognition result is my boss, switch screen.
The following techniques are required to do above:
Taking face image
Recognizing face image
Switching screen
Let’s verify one by one, then integrate at the end.
Taking Face Image
First of all, taking face image with webcam.
This time, I used BUFFALO BSW20KM11BK as webcam.
文章图片
You can also take image from the camera with the included software, but it is better to be able to take from the program because of considering the processing afterwards. Also, since face recognition is done in the subsequent processing, it is necessary to cut out only the face image. So, I use Python and OpenCV to take face image. Here’s the code for that:
- BossSensor/camera_reader.py
文章图片
Recognizing Boss Face
Next, we use machine learning so that the computer can recognize the face of the boss.
We need the following three steps:
Collecting images
Preprocessing images
Building Machine Learning Model
Let’s take a look at these one by one.
Collecting Images
First of all, I need to collect a large number of images for learning. As a collection method, I used the following:
Google image search
Image collection on Facebook
Taking video
Initially, I collected images from Web search and Facebook, but enough images did not gather. So, I took video using a video camera and decomposed video into a large number of images.
Preprocessing Images
Well, I got a lot of images with faces, but the learning model can not be learned as it is. This is because the part not related to the face occupies a considerable part of the image. So we cut out only the face image.
I mainly used ImageMagick for extraction. You can get only face images by cutting out with ImageMagick.
- ImageMagick
文章图片
Perhaps I am the one who possesses the face image of the most boss in the world. I must have it more than his parents.
Now I’m ready for learning.
Building Machine Learning Model
Keras is used to build convolutional neural network(CNN) and CNN is trained. TensorFlow is used for Keras’s back end. If you only recognize the face, you can call the Web API for image recognition like Computer Vision API in Cognitive Services, but this time I decided to make it by myself considering real time nature.
The network has the following architecture. Keras is convenient because it can output the architecture easily.
____________________________________________________________________________________________________
Layer (type)Output ShapeParam #Connected to
====================================================================================================
convolution2d_1 (Convolution2D)(None, 32, 64, 64)896convolution2d_input_1[0][0]
____________________________________________________________________________________________________
activation_1 (Activation)(None, 32, 64, 64)0convolution2d_1[0][0]
____________________________________________________________________________________________________
convolution2d_2 (Convolution2D)(None, 32, 62, 62)9248activation_1[0][0]
____________________________________________________________________________________________________
activation_2 (Activation)(None, 32, 62, 62)0convolution2d_2[0][0]
____________________________________________________________________________________________________
maxpooling2d_1 (MaxPooling2D)(None, 32, 31, 31)0activation_2[0][0]
____________________________________________________________________________________________________
dropout_1 (Dropout)(None, 32, 31, 31)0maxpooling2d_1[0][0]
____________________________________________________________________________________________________
convolution2d_3 (Convolution2D)(None, 64, 31, 31)18496dropout_1[0][0]
____________________________________________________________________________________________________
activation_3 (Activation)(None, 64, 31, 31)0convolution2d_3[0][0]
____________________________________________________________________________________________________
convolution2d_4 (Convolution2D)(None, 64, 29, 29)36928activation_3[0][0]
____________________________________________________________________________________________________
activation_4 (Activation)(None, 64, 29, 29)0convolution2d_4[0][0]
____________________________________________________________________________________________________
maxpooling2d_2 (MaxPooling2D)(None, 64, 14, 14)0activation_4[0][0]
____________________________________________________________________________________________________
dropout_2 (Dropout)(None, 64, 14, 14)0maxpooling2d_2[0][0]
____________________________________________________________________________________________________
flatten_1 (Flatten)(None, 12544)0dropout_2[0][0]
____________________________________________________________________________________________________
dense_1 (Dense)(None, 512)6423040flatten_1[0][0]
____________________________________________________________________________________________________
activation_5 (Activation)(None, 512)0dense_1[0][0]
____________________________________________________________________________________________________
dropout_3 (Dropout)(None, 512)0activation_5[0][0]
____________________________________________________________________________________________________
dense_2 (Dense)(None, 2)1026dropout_3[0][0]
____________________________________________________________________________________________________
activation_6 (Activation)(None, 2)0dense_2[0][0]
====================================================================================================
Total params: 6489634
The code is here:
- BossSensor/boss_train.py
Switching ScreenNow, when learned model recognize the face of the boss, I need to change the screen. In this time, let’s display the image to pretend to work.
I am a programmer so I prepared the following image.
文章图片
I only display this image.
Since I want to display the image in full screen, I use PyQt. Here’s the code for that:
- BossSensor/image_show.py
Finished ProductOnce we integrate the technologies we have verified, we are done. I actually tried it.
“My boss left his seat and he was approaching to my seat.”
文章图片
“OpenCV has detected the face and input the image into the learned model.”
文章图片
“The screen has switched by recognizing him! ヽ(‘ ?‘ )ノ ???”
文章图片
Source CodeYou can download Boss Sensor from following link:
- BossSensor
ConclusionIn this time, I combined the real-time image acquisition from Web camera with face recognition using Keras to recognize my boss and hide the screen.
Currently, I detect the face with OpenCV, but since the accuracy of face detection in OpenCV seems not good, I’d like to try using Dlib to improve the accuracy. Also I would like to use my own trained face detection model.
Since the recognition accuracy of the image acquired from the Web camera is not good, I would like to improve it.
If you like this article, please retweet or share.↓
http://ahogrammer.com/2016/11/15/deep-learning-enables-you-to-hide-screen-when-your-boss-is-approaching/
【Deep Learning Enables You to Hide Screen when Your Boss is Approaching】
推荐阅读
- Android studio 代码突然报错解决方案
- java-mybaits-00401-Mapper-输入输出
- mybatis学习之路别名(typeAliases)mapper接口加载映射文件
- Android编程(底部弹出的对话框)
- android中init.rc文件的解析问题
- mybatis学习之路mapper代理开发方法-开发规范及实现
- Android如何设置圆角按钮
- Android KK后为何工厂模式下无法adb 无法重新启动机器 ()
- HDU 6030 Happy Necklace