--- license: apache-2.0 tags: - onnx - object-detection - pose-estimation - keypoint detection - ezonnx --- ### RTMO ONNX models for inference with [EZONNX](https://github.com/ikeboo/ezonnx) - Model type: Multi person keypoint detection - Official GitHub repository: [MMPose - RTMO](https://github.com/open-mmlab/mmpose/tree/main/projects/rtmo) - Usage ```python from ezonnx import RTMO, visualize_images model = RTMO("s") # automatically load from Hugging Face ret = model("image.jpg") visualize_images("Detection result",ret.visualized_img) ```