├── .gitattributes ├── .gitignore ├── CRUD.py ├── GUI └── register.jpg ├── README.md ├── __pycache__ └── CRUD.cpython-36.pyc ├── current.csv ├── data.csv ├── data ├── Attendance_xlsx │ ├── data.xlsx │ ├── first_year.xlsx │ ├── first_year_1sem_IT1.xlsx │ ├── first_year_1sem_IT2.xlsx │ ├── forth_year_7sem_IT1.xlsx │ ├── forth_year_8sem_IT2.xlsx │ ├── second_year_3sem_IT1.xlsx │ ├── second_year_4sem_IT2.xlsx │ ├── third_year_5sem_IT2.xlsx │ ├── third_year_6sem_IT2.xlsx │ └── ~$third_year_5sem_IT2.xlsx └── excel │ ├── data.xlsx │ ├── first_year.xlsx │ ├── first_year │ ├── first_year_1sem_IT.xlsx │ ├── first_year_1sem_IT1.xlsx │ └── first_year_2sem_IT2.xlsx │ ├── forth_year │ ├── forth_year_7sem_IT1.xlsx │ ├── forth_year_7sem_IT2.xlsx │ ├── forth_year_8sem_IT1.xlsx │ └── forth_year_8sem_IT2.xlsx │ ├── second_year │ ├── second_year_3sem_IT1.xlsx │ ├── second_year_3sem_IT2.xlsx │ ├── second_year_4sem_IT1.xlsx │ └── second_year_4sem_IT2.xlsx │ └── third_year │ ├── third_year_5sem_IT1.xlsx │ ├── third_year_5sem_IT2.xlsx │ ├── third_year_6sem_IT1.xlsx │ └── third_year_6sem_IT2.xlsx ├── demo.py ├── haarcascade └── haarcascade_frontalface_default.xml ├── haarcascade_frontalface_default.xml ├── main_gui.py ├── scripts ├── Dates.py ├── __pycache__ │ ├── Dates.cpython-36.pyc │ ├── detect.cpython-36.pyc │ ├── mail.cpython-36.pyc │ └── update.cpython-36.pyc ├── current.csv ├── detect.py ├── mail.py ├── to_grayscale.py └── train.py ├── test.py └── tools ├── crop.py ├── resizeImages.py └── split.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CRUD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/CRUD.py -------------------------------------------------------------------------------- /GUI/register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/GUI/register.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/CRUD.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/__pycache__/CRUD.cpython-36.pyc -------------------------------------------------------------------------------- /current.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/current.csv -------------------------------------------------------------------------------- /data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data.csv -------------------------------------------------------------------------------- /data/Attendance_xlsx/data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/Attendance_xlsx/data.xlsx -------------------------------------------------------------------------------- /data/Attendance_xlsx/first_year.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/Attendance_xlsx/first_year.xlsx -------------------------------------------------------------------------------- /data/Attendance_xlsx/first_year_1sem_IT1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/Attendance_xlsx/first_year_1sem_IT1.xlsx -------------------------------------------------------------------------------- /data/Attendance_xlsx/first_year_1sem_IT2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/Attendance_xlsx/first_year_1sem_IT2.xlsx -------------------------------------------------------------------------------- /data/Attendance_xlsx/forth_year_7sem_IT1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/Attendance_xlsx/forth_year_7sem_IT1.xlsx -------------------------------------------------------------------------------- /data/Attendance_xlsx/forth_year_8sem_IT2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/Attendance_xlsx/forth_year_8sem_IT2.xlsx -------------------------------------------------------------------------------- /data/Attendance_xlsx/second_year_3sem_IT1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/Attendance_xlsx/second_year_3sem_IT1.xlsx -------------------------------------------------------------------------------- /data/Attendance_xlsx/second_year_4sem_IT2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/Attendance_xlsx/second_year_4sem_IT2.xlsx -------------------------------------------------------------------------------- /data/Attendance_xlsx/third_year_5sem_IT2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/Attendance_xlsx/third_year_5sem_IT2.xlsx -------------------------------------------------------------------------------- /data/Attendance_xlsx/third_year_6sem_IT2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/Attendance_xlsx/third_year_6sem_IT2.xlsx -------------------------------------------------------------------------------- /data/Attendance_xlsx/~$third_year_5sem_IT2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/Attendance_xlsx/~$third_year_5sem_IT2.xlsx -------------------------------------------------------------------------------- /data/excel/data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/data.xlsx -------------------------------------------------------------------------------- /data/excel/first_year.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/first_year.xlsx -------------------------------------------------------------------------------- /data/excel/first_year/first_year_1sem_IT.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/first_year/first_year_1sem_IT.xlsx -------------------------------------------------------------------------------- /data/excel/first_year/first_year_1sem_IT1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/first_year/first_year_1sem_IT1.xlsx -------------------------------------------------------------------------------- /data/excel/first_year/first_year_2sem_IT2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/first_year/first_year_2sem_IT2.xlsx -------------------------------------------------------------------------------- /data/excel/forth_year/forth_year_7sem_IT1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/forth_year/forth_year_7sem_IT1.xlsx -------------------------------------------------------------------------------- /data/excel/forth_year/forth_year_7sem_IT2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/forth_year/forth_year_7sem_IT2.xlsx -------------------------------------------------------------------------------- /data/excel/forth_year/forth_year_8sem_IT1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/forth_year/forth_year_8sem_IT1.xlsx -------------------------------------------------------------------------------- /data/excel/forth_year/forth_year_8sem_IT2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/forth_year/forth_year_8sem_IT2.xlsx -------------------------------------------------------------------------------- /data/excel/second_year/second_year_3sem_IT1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/second_year/second_year_3sem_IT1.xlsx -------------------------------------------------------------------------------- /data/excel/second_year/second_year_3sem_IT2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/second_year/second_year_3sem_IT2.xlsx -------------------------------------------------------------------------------- /data/excel/second_year/second_year_4sem_IT1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/second_year/second_year_4sem_IT1.xlsx -------------------------------------------------------------------------------- /data/excel/second_year/second_year_4sem_IT2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/second_year/second_year_4sem_IT2.xlsx -------------------------------------------------------------------------------- /data/excel/third_year/third_year_5sem_IT1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/third_year/third_year_5sem_IT1.xlsx -------------------------------------------------------------------------------- /data/excel/third_year/third_year_5sem_IT2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/third_year/third_year_5sem_IT2.xlsx -------------------------------------------------------------------------------- /data/excel/third_year/third_year_6sem_IT1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/third_year/third_year_6sem_IT1.xlsx -------------------------------------------------------------------------------- /data/excel/third_year/third_year_6sem_IT2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/data/excel/third_year/third_year_6sem_IT2.xlsx -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/demo.py -------------------------------------------------------------------------------- /haarcascade/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/haarcascade/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /main_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/main_gui.py -------------------------------------------------------------------------------- /scripts/Dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/scripts/Dates.py -------------------------------------------------------------------------------- /scripts/__pycache__/Dates.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/scripts/__pycache__/Dates.cpython-36.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/detect.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/scripts/__pycache__/detect.cpython-36.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/mail.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/scripts/__pycache__/mail.cpython-36.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/update.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/scripts/__pycache__/update.cpython-36.pyc -------------------------------------------------------------------------------- /scripts/current.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/scripts/current.csv -------------------------------------------------------------------------------- /scripts/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/scripts/detect.py -------------------------------------------------------------------------------- /scripts/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/scripts/mail.py -------------------------------------------------------------------------------- /scripts/to_grayscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/scripts/to_grayscale.py -------------------------------------------------------------------------------- /scripts/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/scripts/train.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/test.py -------------------------------------------------------------------------------- /tools/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/tools/crop.py -------------------------------------------------------------------------------- /tools/resizeImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/tools/resizeImages.py -------------------------------------------------------------------------------- /tools/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakshamhere/Automated-Attendance-System-By-Real-Time-Face-Reccognition/HEAD/tools/split.py --------------------------------------------------------------------------------