--- license: apache-2.0 tags: - onnx - object-detection - face detection - ezonnx --- ### YuNet ONNX models for inference with [EZONNX](https://github.com/ikeboo/ezonnx) - Model type: Face and landmark detection - Official paper: [YuNet](https://www.researchgate.net/publication/370122920_YuNet_A_Tiny_Millisecond-level_Face_Detector) - Setup ``` pip install git+https://github.com/ikeboo/ezonnx.git ``` - Usage ```python from ezonnx import YuNet, visualize_images det = YuNet(topk=1000) ret = det("images/many_faces.jpg") visualize_images("result",ret.visualized_img) ```