Skip to content

A simple Ai attendance system for students or office use, with React on frontend and Python Django on Backend

Notifications You must be signed in to change notification settings

H5SH/Ai-Attendance-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The methods and codes used

Face Recognition_ Methods and Applications.pdf

Predicted Images

33

802

244

labelImg Canvas Error of Data being float

Solved by following guidlines

File canvas.py x:\xxxxx\Python31x\site-packages\libs\canvas.py

line 526 : from : p.drawRect(left_top.x(), left_top.y(), rect_width, rect_height) to : p.drawRect(int(left_top.x()), int(left_top.y()), int(rect_width), int(rect_height))

line 530 : from : p.drawLine(self.prev_point.x(), 0, self.prev_point.x(), self.pixmap.height())

to : p.drawLine(int(self.prev_point.x()), 0, int(self.prev_point.x()), int(self.pixmap.height()))

line 531 : from : p.drawLine(0, self.prev_point.y(), self.pixmap.width(), self.prev_point.y()) to : p.drawLine(0, int(self.prev_point.y()), int(self.pixmap.width()), int(self.prev_point.y()))

File labelImg.py x:\xxxxx\Python31x\site-packages\labelImg\labelImg.py

line 965 : from : bar.setValue(bar.value() + bar.singleStep() * units) to : bar.setValue(int(bar.value() + bar.singleStep() * units))

About

A simple Ai attendance system for students or office use, with React on frontend and Python Django on Backend

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors