YuNet-ONNX / README.md
bukuroo's picture
Update README.md
3c190bf verified
metadata
license: apache-2.0
tags:
  - onnx
  - object-detection
  - face detection
  - ezonnx

YuNet

ONNX models for inference with EZONNX

  • Model type:
    Face and landmark detection

  • Official paper:
    YuNet

  • Setup

    pip install git+https://github.com/ikeboo/ezonnx.git
    
  • Usage

    from ezonnx import YuNet, visualize_images
    det = YuNet(topk=1000)
    ret = det("images/many_faces.jpg")
    visualize_images("result",ret.visualized_img)