All Projects → prasadus92 → Face-Recognition

prasadus92 / Face-Recognition

Licence: GPL-3.0 license
A Java application for Face Recognition under expressions, occlusions and pose variations.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Face-Recognition

Dockerface
Face detection using deep learning.
Stars: ✭ 173 (+214.55%)
Mutual labels:  face-recognition, face-detection
Hms Ml Demo
HMS ML Demo provides an example of integrating Huawei ML Kit service into applications. This example demonstrates how to integrate services provided by ML Kit, such as face detection, text recognition, image segmentation, asr, and tts.
Stars: ✭ 187 (+240%)
Mutual labels:  face-recognition, face-detection
Attendance Using Face
Face-recognition using Siamese network
Stars: ✭ 174 (+216.36%)
Mutual labels:  face-recognition, face-detection
Ownphotos
Self hosted alternative to Google Photos
Stars: ✭ 2,587 (+4603.64%)
Mutual labels:  face-recognition, face-detection
Face.evolve.pytorch
🔥🔥High-Performance Face Recognition Library on PaddlePaddle & PyTorch🔥🔥
Stars: ✭ 2,719 (+4843.64%)
Mutual labels:  face-recognition, face-detection
Ownphotos Frontend
Stars: ✭ 171 (+210.91%)
Mutual labels:  face-recognition, face-detection
Opencv Course
Learn OpenCV in 4 Hours - Code used in my Python and OpenCV course on freeCodeCamp.
Stars: ✭ 185 (+236.36%)
Mutual labels:  face-recognition, face-detection
Lookatme
VideoView that plays video only when 👀 are open and 👦 is detected with various other features
Stars: ✭ 161 (+192.73%)
Mutual labels:  face-recognition, face-detection
Arcface Multiplex Recognition
适用于复杂场景的人脸识别身份认证系统
Stars: ✭ 200 (+263.64%)
Mutual labels:  face-recognition, face-detection
Marvel
Marvel - Face Recognition With Android & OpenCV
Stars: ✭ 199 (+261.82%)
Mutual labels:  face-recognition, face-detection
Facepause
Look Away to Pause Youtube - Experimental Chrome Extension
Stars: ✭ 171 (+210.91%)
Mutual labels:  face-recognition, face-detection
Awesome Face recognition
papers about Face Detection; Face Alignment; Face Recognition && Face Identification && Face Verification && Face Representation; Face Reconstruction; Face Tracking; Face Super-Resolution && Face Deblurring; Face Generation && Face Synthesis; Face Transfer; Face Anti-Spoofing; Face Retrieval;
Stars: ✭ 3,220 (+5754.55%)
Mutual labels:  face-recognition, face-detection
Face Api.js
JavaScript API for face detection and face recognition in the browser and nodejs with tensorflow.js
Stars: ✭ 13,258 (+24005.45%)
Mutual labels:  face-recognition, face-detection
Human
Human: 3D Face Detection, Body Pose, Hand & Finger Tracking, Iris Tracking and Age & Gender Prediction
Stars: ✭ 172 (+212.73%)
Mutual labels:  face-recognition, face-detection
Facenet Pytorch
Pretrained Pytorch face detection (MTCNN) and facial recognition (InceptionResnet) models
Stars: ✭ 2,564 (+4561.82%)
Mutual labels:  face-recognition, face-detection
Instabotai
Instagram AI bot with face detection. It works without instagram api, need only login and password.
Stars: ✭ 181 (+229.09%)
Mutual labels:  face-recognition, face-detection
Maskedface Net
MaskedFace-Net is a dataset of human faces with a correctly and incorrectly worn mask based on the dataset Flickr-Faces-HQ (FFHQ).
Stars: ✭ 152 (+176.36%)
Mutual labels:  face-recognition, face-detection
Facenet
Face recognition using Tensorflow
Stars: ✭ 12,189 (+22061.82%)
Mutual labels:  face-recognition, face-detection
Viewfacecore
C# 超简单的人脸识别库。
Stars: ✭ 193 (+250.91%)
Mutual labels:  face-recognition, face-detection
Facerecognition
Nextcloud app that implement a basic facial recognition system.
Stars: ✭ 226 (+310.91%)
Mutual labels:  face-recognition, face-detection

Face Recognition

A Java application for face recognition under expressions, occlusions and pose variations.

Description:

  • This is a prototype with the goal of improving recognition accuracy and reliability under un-cooperative scenarios like expressions, occlusions (obstacles like spectacles) and pose variations (<60deg).

  • The project is tested with Bosphorous Database (http://bosphorus.ee.boun.edu.tr/default.aspx).

Running the project:

  1. Install latest version of JDK.

  2. Install NetBeans.

  3. Go to Control Panel->Add or Remove Programs(Uninstall Programs) and check any other databases are installed (e.g. Microsoft SQL or simply MySQL). If so, uninstall all.

  4. Install Microsoft Visual C++ Redistributable Package (vcredist_x86.exe).

  5. Intall WAMP Server and start it.

  6. Open NetBeans and create a new Java project. Delete the default package created. (For example, if the project name is abc, then NetBeans automatically creates a package with the same name along with .java file. Delete the complete package in Source Packages section )

  7. Open the code and copy full "src" folder(Parent folder of all .java files) and paste it on Source Packages in NetBeans.

  8. Now right click on Libraries and choose Add JAR/Folder option and open the "libs" folder that came with code. Select all(CTRL+A) and click Open.

  9. Copy all .dll files came with code in the "dll" folder to C:\Windows folder [ONLY FOR 32 BIT SYSTEMS].

  10. Install Java 3D API(java3d_1_5...exe).

  11. Go to C:\Program Files\Java\Java3D\bin and copy all DLLs to C:\Windows [ONLY FOR 64 BIT SYSTEMS].

  12. Open System Tray->Wamp Server green icon->Left Click->MySQL->MySQL Console. Press Enter. You should see mysql> prompt.

Enter the following commands:

 
 create database 3dface;
 use 3dface;
 create table users(UserName varchar(30),Email varchar(50),Phone varchar(10),Password varchar(20));
 exit;
 
  1. Again open system tray->Wamp green icon left click->phpMyAdmin. Browser will be opened. Database list on left side. Click on "3dface". You can see "users" table and get confirmed with the same.

  2. Run the project.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].