├── README.md ├── img ├── demo.png ├── demo2.jpg ├── face.png ├── face_mask_detection.caffemodel.png ├── face_mask_detection.hdf5.png ├── facemask.gif ├── pr_curve.png ├── wx.png └── wxgroup.jpeg ├── main.cpp ├── models ├── face_mask_detection.caffemodel └── face_mask_detection.prototxt ├── opencv_dnn_infer.py ├── simhei.ttf └── utils ├── anchor_decode.py ├── anchor_generator.py └── nms.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/README.md -------------------------------------------------------------------------------- /img/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/img/demo.png -------------------------------------------------------------------------------- /img/demo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/img/demo2.jpg -------------------------------------------------------------------------------- /img/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/img/face.png -------------------------------------------------------------------------------- /img/face_mask_detection.caffemodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/img/face_mask_detection.caffemodel.png -------------------------------------------------------------------------------- /img/face_mask_detection.hdf5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/img/face_mask_detection.hdf5.png -------------------------------------------------------------------------------- /img/facemask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/img/facemask.gif -------------------------------------------------------------------------------- /img/pr_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/img/pr_curve.png -------------------------------------------------------------------------------- /img/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/img/wx.png -------------------------------------------------------------------------------- /img/wxgroup.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/img/wxgroup.jpeg -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/main.cpp -------------------------------------------------------------------------------- /models/face_mask_detection.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/models/face_mask_detection.caffemodel -------------------------------------------------------------------------------- /models/face_mask_detection.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/models/face_mask_detection.prototxt -------------------------------------------------------------------------------- /opencv_dnn_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/opencv_dnn_infer.py -------------------------------------------------------------------------------- /simhei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/simhei.ttf -------------------------------------------------------------------------------- /utils/anchor_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/utils/anchor_decode.py -------------------------------------------------------------------------------- /utils/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/utils/anchor_generator.py -------------------------------------------------------------------------------- /utils/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc203/FaceMaskDetection-dnn/HEAD/utils/nms.py --------------------------------------------------------------------------------