Click here to Skip to main content
15,891,204 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello everyone,

I want to know how can I connect the face recognition system with the attendance system.

What I mean is, the face recognition system will recognize the student, and it will automatically update the attendance of that student.

Right now I have two different system. One is the face recognition system that save the image in the trainedface folder, and the other one is the attendance system. This attendance system only lecturer can login into it.

So the question is, how can I link the face recognition system with the attendance system?

Can the image in the trainedface folder link with the database of the attendance system? how?

What I have tried:

I tried to find the solution, but I cannot find anything about it. I hope you guys can help me up to find the solution for my final project.


Thank you.
Posted
Updated 14-Mar-16 21:18pm
Comments
Mehdi Gholam 15-Mar-16 2:48am    
I doubt that would be cost effective or even important for a class.

It's not that simple: it depends on how you want to organise things.
Yes, the recognition system could access the attendance database directly, but ask yourself: "is that the right thing to do?" If it does, then that's like you modifying your bank database directly, instead of going via the banking system which provide audit trails, make sure that you are who you say you are, and don't let you just change the balance without actual money being involved.

A better way is to have the recognition software be a "service assembly" (not the same thing as a windows Service) which can be used by number of applications to recognise a user from his image. The attendence system then uses that service to ID a user and record his attendance, in much the same way that you can use your Google+, Microsoft or Facebook ID to log in to a number of sites.

Exactly how you organise that is up to you: you could provide the recognition system as a DLL, or as a EXE with a defined Sockets or WCF assess API for example. Up to you!
 
Share this answer
 
Assuming your face recognition references back to a single set of faces, one for each student I would add that file name to the student record.

Otherwise you will need to design some sort of metric based on the images that you can store in the database and use that to identify the stored image.

Or have your lecturer do a one time match of a base image with the student and then some sort of matching algorithm between the daily file and the base image stored in the database.
 
Share this answer
 
Comments
Member 13585644 20-Dec-17 9:24am    
face recognition system will recognize the student, and it will automatically update the attendance of that student
i too want this
with sql server anyone please help me

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900