gitextract_75b8m8g9/ ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── facial_features.py ├── facial_landmarks.py ├── filters/ │ ├── Mouth.xml │ ├── Nose.xml │ ├── haarcascade_eye.xml │ ├── haarcascade_frontalface_default.xml │ ├── haarcascade_profileface.xml │ └── haarcascade_smile.xml ├── main.py ├── main_dlib.py ├── pyfakewebcam/ │ ├── __init__.py │ ├── pyfakewebcam.py │ └── v4l2.py ├── requirements.txt └── scripts/ ├── background_substraction.py ├── blur_face.py ├── canny.py ├── color_space.py ├── dense_optflow.py ├── invisibility_cloak.py ├── optical_flow.py └── video_loop.py