├── README.md ├── Votes.csv ├── add_faces.py ├── background.png ├── data ├── faces_data.pkl └── names.pkl ├── give_vote.py └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajj014/smartElectionGfg/HEAD/README.md -------------------------------------------------------------------------------- /Votes.csv: -------------------------------------------------------------------------------- 1 | 12341234,NOTA,25-05-2024,20:11-29 2 | -------------------------------------------------------------------------------- /add_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajj014/smartElectionGfg/HEAD/add_faces.py -------------------------------------------------------------------------------- /background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajj014/smartElectionGfg/HEAD/background.png -------------------------------------------------------------------------------- /data/faces_data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajj014/smartElectionGfg/HEAD/data/faces_data.pkl -------------------------------------------------------------------------------- /data/names.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajj014/smartElectionGfg/HEAD/data/names.pkl -------------------------------------------------------------------------------- /give_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virajj014/smartElectionGfg/HEAD/give_vote.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python 2 | scikit-learn 3 | pywin32 --------------------------------------------------------------------------------