Utility of Face Recognition

Amit Pandey
3 min readJun 24, 2021

--

The Face Recognition has various use cases like it can be used to identify people in photos, video, or in real-time. Law enforcement may also use mobile devices to identify people during police stops.

Definition of Face Recognition :- Face recognition is a method of identifying or verifying the identity of an individual using their face.

In this blog I will try to explain how we can use Face Recognition and then send e-mail and WhatsApp message to someone then ,Further if other face detected then we create EC2 instance in AWS.

Source Code :- https://github.com/amitp9201/Task_6_LW.git

Creating training data by capturing simultaneous images

in first step we are trying to capture images continuously for the training purposes for model —

The code for capturing images are given below :

Training of initial model

After taking the collection of images now we further move towards the learning process of machine for image recognition.

After that we run our facial recognition module for mailing ,messaging and AWS instance creation for other set of images.

1
2
3

Now we move to the 2nd set of images for AWS instance creation :

image Capturing
Training for the 2nd set of image
AWS instance creation

SUMMERY :

❄️ Creating a program that perform below mentioned task upon recognizing a particular face.

📌 When it recognize your face then -

👉 It send mail to specified mail id .

👉 Second it send WhatsApp message to the particular mentioned contact number.

📌 When it recognize second face, then it-

👉 Create EC2 instance in the AWS using CLI.

👉 Create 5 GB EBS volume and attach it to the instance.

Thank You

--

--