Develop a browser-based application or a native mobile application to demonstrate application of Face Recognition technology.
In this project, I developed a desktop application using the face-recognition technique in python. I propose a criminal identification & Missing people identification system to enhance and upgrade criminal distinction into a more effective and efficient approach. Technology working behind it is face recognition. From the captured images of the person, faces get cropped and compared with the criminal data we have in our database. If any person’s face from image or videos matches, the system will display their name on the system screen.
- Performance of model
- Model selection
- Scalability
- Scalability of model
- Retrainable model
- Accessibility
- User friendly
- Accuracy
Python has a lot of GUI frameworks, but Tkinter is the only framework that’s built into the Python standard library. Tkinter has several strengths. It’s cross-platform, so the same code works on Windows, macOS, and Linux. Visual elements are rendered using native operating system elements, so applications built with Tkinter look like they belong on the platform where they’re run.
Python is a computer programming language often used to build websites and software, automate tasks, and conduct data analysis. Python is a general-purpose language, meaning it can be used to create a variety of different programs and isn't specialized for any specific problems. Python is dynamically-typed and garbage-collected.
OpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in the commercial products. Being a BSD-licensed product, OpenCV makes it easy for businesses to utilize and modify the code.
Python MySQL Connector is a Python driver that helps to integrate Python and MySQL. This Python MySQL library allows the conversion between Python and MySQL data types. MySQL Connector API is implemented using pure Python and does not require any third-party library.
- Python version must be
3.8.10
- Tkinter version must be
8.6
- Xampp must be installed on your system.
Note: Tk interface can be different for different systems and their versions
- start your mysql and apache server and navigate to localhost and create database of name
criminaldb
. - Import
table.sql
file into your newly createdcriminaldb
. - run this sql command in your criminaldb
SET GLOBAL sql_mode='';
- Install the requiremnts using command
pip or pip3 install -r requirements.txt
. - Before running the file extract all the files of
Images
Folder to your root directory. - Run the main python file
python or python3 main.py
. - Now experience the GUI and features of the project.
Login Page | Sign-Up Page |
---|---|
Home Page
Criminal Detection | Finding Missing People |
---|---|
Register Criminal | Register Missing Person |
---|---|
Image Observation | Image Observation |
---|---|
Alerts | Alerts |
---|---|
Alerts | Alerts |
---|---|
Terminal Output
Note: If you might face the error of segmentation fault
in your system then you must follow this two steps to run the project correctly.
- comment the line 31 in
main.py
file. - Uncomment the lines 296, 297 and 302 in
main.py
file also uncomment that complete mainfuntion inmain.py
file.
-
Fingerprint Recognition and Eye detection can be added for Observation.
-
Webcam Support can be added as a feature.