Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0904-mansi/face-recognition-challenge-engage-22
I propose criminal identification system and missing people identification for Police Department to enhance and upgrade the criminal distinguishing into a more effective and efficient approach. Technology working behind is face recognition.
https://github.com/0904-mansi/face-recognition-challenge-engage-22
face-detection face-recognition numpy opencv python3 tkinter-gui
Last synced: 2 days ago
JSON representation
I propose criminal identification system and missing people identification for Police Department to enhance and upgrade the criminal distinguishing into a more effective and efficient approach. Technology working behind is face recognition.
- Host: GitHub
- URL: https://github.com/0904-mansi/face-recognition-challenge-engage-22
- Owner: 0904-mansi
- Created: 2022-05-08T13:57:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-22T13:10:58.000Z (about 1 year ago)
- Last Synced: 2024-11-14T20:48:34.823Z (2 months ago)
- Topics: face-detection, face-recognition, numpy, opencv, python3, tkinter-gui
- Language: Python
- Homepage:
- Size: 84.3 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Face Recognition Challenge for Microsoft Engage'22
## Problem Statementπ§
Develop a browser-based application or a native mobile application to demonstrate application of Face Recognition technology.
## Solution β¨
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.
## Model Build on Keeping These Criteria in Mind π©π»βπ»
1. Performance of model
2. Model selection
3. Scalability
4. Scalability of model
5. Retrainable model
6. Accessibility
7. User friendly
8. Accuracy## Technologies π©π»βπ»
### 1. Tkinter
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.
### 2. Python
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.
### 3. Open-CV
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.
### 4. MySQL
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.
## Prerequisite π₯
1. Python version must be `3.8.10`
2. Tkinter version must be `8.6`
3. [Xampp](https://www.apachefriends.org/download.html) must be installed on your system.`Note: Tk interface can be different for different systems and their versions`
## Steps to run the project ππ»
1. start your mysql and apache server and navigate to localhost and create database of name `criminaldb`.
2. Import `table.sql` file into your newly created `criminaldb`.
3. run this sql command in your criminaldb `SET GLOBAL sql_mode='';`
4. Install the requiremnts using command `pip or pip3 install -r requirements.txt`.
5. Before running the file extract all the files of `Images` Folder to your root directory.
6. Run the main python file `python or python3 main.py`.
7. Now experience the GUI and features of the project.## Glimpse of my Application ππ»ββοΈ
**Login Page** | **Sign-Up Page**
:-------------------------:|:-------------------------:
![](https://user-images.githubusercontent.com/81081105/170031961-682d7f02-45e0-47b0-b8de-12fbb8576287.png) | ![](https://user-images.githubusercontent.com/81081105/170031999-d0f4ab21-aec8-4020-9466-d08fbf346321.png)**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.
1. comment the line 31 in `main.py` file.
2. Uncomment the lines 296, 297 and 302 in `main.py` file also uncomment that complete mainfuntion in `main.py` file.## Future Scope π΅οΈββοΈ
1. Fingerprint Recognition and Eye detection can be added for Observation.
2. Webcam Support can be added as a feature.
## Documents related to project π
1. [My Roadmap](https://docs.google.com/document/d/1Vvo75mWCfiRvxTxxgcbv9ka2XeGkBIDrIBSEelaaudQ/edit?usp=sharing)
2. [One Pager](https://docs.google.com/document/d/1HGDGQlH0xjRnrk-JU5w1jfEVMJE2FOT9GkJOYi6psYA/edit?usp=sharing)
3. [Presentation](https://docs.google.com/presentation/d/1djK7o2FT_ateDKO9a9j9DQfC6ofK4lAmsMMufQHv-r0/edit?usp=sharing)
4. [Youtube Video](https://youtu.be/QnsHDpT5XIo)