├── .gitignore ├── LICENSE ├── README.md ├── antispoofing_models ├── antispoofing_model.h5 └── antispoofing_model.json ├── antispoofing_system.ipynb ├── livelines_net.py ├── liveness_net_speed_check.py ├── models └── haarcascade_frontalface_default.xml ├── presentation_tools ├── model.png ├── real_detected_face.jpg ├── real_face.jpg ├── real_image.jpg ├── resized_real_face.jpg ├── resized_spoof_face.jpg ├── spoof_detected_face.jpg ├── spoof_face.jpg ├── spoof_image.jpg └── steps.txt └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Face_Antispoofing_System -------------------------------------------------------------------------------- /antispoofing_models/antispoofing_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/antispoofing_models/antispoofing_model.h5 -------------------------------------------------------------------------------- /antispoofing_models/antispoofing_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/antispoofing_models/antispoofing_model.json -------------------------------------------------------------------------------- /antispoofing_system.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/antispoofing_system.ipynb -------------------------------------------------------------------------------- /livelines_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/livelines_net.py -------------------------------------------------------------------------------- /liveness_net_speed_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/liveness_net_speed_check.py -------------------------------------------------------------------------------- /models/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/models/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /presentation_tools/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/presentation_tools/model.png -------------------------------------------------------------------------------- /presentation_tools/real_detected_face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/presentation_tools/real_detected_face.jpg -------------------------------------------------------------------------------- /presentation_tools/real_face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/presentation_tools/real_face.jpg -------------------------------------------------------------------------------- /presentation_tools/real_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/presentation_tools/real_image.jpg -------------------------------------------------------------------------------- /presentation_tools/resized_real_face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/presentation_tools/resized_real_face.jpg -------------------------------------------------------------------------------- /presentation_tools/resized_spoof_face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/presentation_tools/resized_spoof_face.jpg -------------------------------------------------------------------------------- /presentation_tools/spoof_detected_face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/presentation_tools/spoof_detected_face.jpg -------------------------------------------------------------------------------- /presentation_tools/spoof_face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/presentation_tools/spoof_face.jpg -------------------------------------------------------------------------------- /presentation_tools/spoof_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/presentation_tools/spoof_image.jpg -------------------------------------------------------------------------------- /presentation_tools/steps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhat-123/Face_Antispoofing_System/HEAD/presentation_tools/steps.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python==4.4.0.40 2 | tensorflow==2.5.0 3 | --------------------------------------------------------------------------------