├── .idea ├── facemask_web.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── README.md ├── __pycache__ └── config.cpython-38.pyc ├── config.py ├── controller ├── __init__.py ├── __pycache__ │ └── __init__.cpython-38.pyc ├── modules │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── home │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── views.cpython-38.pyc │ │ └── views.py │ └── user │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── views.cpython-38.pyc │ │ └── views.py ├── static │ ├── css │ │ ├── style.css │ │ └── style1.css │ └── images │ │ ├── Thumbs.db │ │ ├── adm.png │ │ ├── avtar.png │ │ ├── bg1.jpg │ │ ├── bg5.jpg │ │ ├── close.png │ │ ├── key.png │ │ ├── pass.png │ │ ├── thermometer.png │ │ ├── weather.png │ │ └── wendu.png ├── templates │ ├── bg1.jpg │ ├── index.html │ └── login.html └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── camera.cpython-38.pyc │ └── camera.py ├── img ├── demo2.jpg ├── face_mask_detection.caffemodel.png ├── face_mask_detection.hdf5.png ├── hha.jpeg ├── main.jpg ├── pr_curve.png └── tree.png ├── logs ├── .keepgit └── log ├── main.py ├── mlx90614 ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── mlx90614.cpython-38.pyc └── mlx90614.py ├── models ├── face_mask_detection.caffemodel └── face_mask_detection.prototxt ├── pic2.png ├── pic3.png ├── pic4.png ├── pic5.png ├── simhei.ttf ├── utils ├── __pycache__ │ ├── anchor_decode.cpython-38.pyc │ ├── anchor_generator.cpython-38.pyc │ ├── nms.cpython-38.pyc │ └── play.cpython-38.pyc ├── anchor_decode.py ├── anchor_generator.py └── nms.py └── 需要修改的代码.png /.idea/facemask_web.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/.idea/facemask_web.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/config.py -------------------------------------------------------------------------------- /controller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/__init__.py -------------------------------------------------------------------------------- /controller/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /controller/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /controller/modules/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/modules/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /controller/modules/home/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/modules/home/__init__.py -------------------------------------------------------------------------------- /controller/modules/home/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/modules/home/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /controller/modules/home/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/modules/home/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /controller/modules/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/modules/home/views.py -------------------------------------------------------------------------------- /controller/modules/user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/modules/user/__init__.py -------------------------------------------------------------------------------- /controller/modules/user/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/modules/user/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /controller/modules/user/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/modules/user/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /controller/modules/user/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/modules/user/views.py -------------------------------------------------------------------------------- /controller/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/static/css/style.css -------------------------------------------------------------------------------- /controller/static/css/style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/static/css/style1.css -------------------------------------------------------------------------------- /controller/static/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/static/images/Thumbs.db -------------------------------------------------------------------------------- /controller/static/images/adm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/static/images/adm.png -------------------------------------------------------------------------------- /controller/static/images/avtar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/static/images/avtar.png -------------------------------------------------------------------------------- /controller/static/images/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/static/images/bg1.jpg -------------------------------------------------------------------------------- /controller/static/images/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/static/images/bg5.jpg -------------------------------------------------------------------------------- /controller/static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/static/images/close.png -------------------------------------------------------------------------------- /controller/static/images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/static/images/key.png -------------------------------------------------------------------------------- /controller/static/images/pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/static/images/pass.png -------------------------------------------------------------------------------- /controller/static/images/thermometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/static/images/thermometer.png -------------------------------------------------------------------------------- /controller/static/images/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/static/images/weather.png -------------------------------------------------------------------------------- /controller/static/images/wendu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/static/images/wendu.png -------------------------------------------------------------------------------- /controller/templates/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/templates/bg1.jpg -------------------------------------------------------------------------------- /controller/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/templates/index.html -------------------------------------------------------------------------------- /controller/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/templates/login.html -------------------------------------------------------------------------------- /controller/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /controller/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /controller/utils/__pycache__/camera.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/utils/__pycache__/camera.cpython-38.pyc -------------------------------------------------------------------------------- /controller/utils/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/controller/utils/camera.py -------------------------------------------------------------------------------- /img/demo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/img/demo2.jpg -------------------------------------------------------------------------------- /img/face_mask_detection.caffemodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/img/face_mask_detection.caffemodel.png -------------------------------------------------------------------------------- /img/face_mask_detection.hdf5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/img/face_mask_detection.hdf5.png -------------------------------------------------------------------------------- /img/hha.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/img/hha.jpeg -------------------------------------------------------------------------------- /img/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/img/main.jpg -------------------------------------------------------------------------------- /img/pr_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/img/pr_curve.png -------------------------------------------------------------------------------- /img/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/img/tree.png -------------------------------------------------------------------------------- /logs/.keepgit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/logs/log -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/main.py -------------------------------------------------------------------------------- /mlx90614/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/mlx90614/__init__.py -------------------------------------------------------------------------------- /mlx90614/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/mlx90614/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /mlx90614/__pycache__/mlx90614.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/mlx90614/__pycache__/mlx90614.cpython-38.pyc -------------------------------------------------------------------------------- /mlx90614/mlx90614.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/mlx90614/mlx90614.py -------------------------------------------------------------------------------- /models/face_mask_detection.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/models/face_mask_detection.caffemodel -------------------------------------------------------------------------------- /models/face_mask_detection.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/models/face_mask_detection.prototxt -------------------------------------------------------------------------------- /pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/pic2.png -------------------------------------------------------------------------------- /pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/pic3.png -------------------------------------------------------------------------------- /pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/pic4.png -------------------------------------------------------------------------------- /pic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/pic5.png -------------------------------------------------------------------------------- /simhei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/simhei.ttf -------------------------------------------------------------------------------- /utils/__pycache__/anchor_decode.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/utils/__pycache__/anchor_decode.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/anchor_generator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/utils/__pycache__/anchor_generator.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/nms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/utils/__pycache__/nms.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/play.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/utils/__pycache__/play.cpython-38.pyc -------------------------------------------------------------------------------- /utils/anchor_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/utils/anchor_decode.py -------------------------------------------------------------------------------- /utils/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/utils/anchor_generator.py -------------------------------------------------------------------------------- /utils/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/utils/nms.py -------------------------------------------------------------------------------- /需要修改的代码.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyuanw/facemask-detection-RaspberryPi/HEAD/需要修改的代码.png --------------------------------------------------------------------------------