--- 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 ```