File size: 649 Bytes
7410b8f
 
 
 
 
 
 
 
 
279a80f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
27
28
29
30
31
32
33
34
35
---
license: mit
tags:
  - cat
  - landmark-detection
  - onnx
  - computer-vision
---

# Cat Landmark Detection

Model: [huggingface.co/Isa0/cat-detection](https://huggingface.co/Isa0/cat-detection)  
Dataset: [CAT Dataset – Kaggle](https://www.kaggle.com/datasets/crawford/cat-dataset)

Detects 9 facial landmarks on cats (eyes, ears, nose, mouth) and draws a bounding box around them.

## Usage

```bash
python main.py test.jpg
```

Outputs landmark coordinates to stdout and saves an annotated image to `output.jpg`.

## Dependencies

- `onnxruntime`
- `opencv-python`

Install with [uv](https://github.com/astral-sh/uv):

```bash
uv sync
```