File size: 575 Bytes
c98bcb5
 
 
 
 
 
647f654
c98bcb5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
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)
  ```