computer-vision

computer-vision is a skill for Claude Code, Codex from LuuOW/meridian-mcp. It costs 69 tokens per session (2,305 once invoked), scanned A, original, MIT.

A set of methods for making software interpret images, video and other visual data. It covers tasks such as finding objects, separating image regions, reading text, classifying images and running models on devices.

In plain words
What is it for?
Use it to build detection, segmentation, OCR, image-classification and video-analysis systems with tools such as OpenCV, PyTorch and ONNX.
Why use it?
It helps structure the work from raw visual input through model training, testing, conversion and deployment. It also addresses the trade-off between accuracy, processing speed and hardware limits.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build detection, segmentation, OCR, image-classification and video-analysis systems with tools such as OpenCV, PyTorch and ONNX.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/luuow/meridian-mcp/computer-vision
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add LuuOW/meridian-mcp --skill computer-vision
Clone the repo
git clone --depth 1 https://github.com/LuuOW/meridian-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for computer-vision

README.md
[![agentmods](https://agentmods.dev/badge/skills/luuow/meridian-mcp/computer-vision.svg)](https://agentmods.dev/skills/luuow/meridian-mcp/computer-vision)
Your own site
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/computer-vision"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/computer-vision.svg" alt="Measured on agentmods" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,305 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00069 $0.02305
Opus 5 $0.00034 $0.01153
Sonnet 5 $0.00014 $0.00461
Haiku 4.5 $0.00007 $0.00231

Measured 8d ago against content hash 56e105b5ffae, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

computer-vision scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/computer-vision/SKILL.md · 71 lines

How it starts

The opening of the file, as written. The whole thing — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Computer Vision

Computer vision is the engineering discipline of making machines interpret and act on visual data — images, video, point clouds, and multi-modal streams. This skill spans the full pipeline from raw pixel ingestion through model training, evaluation, export, and production deployment, with emphasis on the practical trade-offs between accuracy, latency, and hardware constraints. Canonical frameworks are PyTorch/torchvision, Ultralytics, OpenCV, and the ONNX ecosystem.

Core Concepts

Object Detection

YOLOv8 / YOLOv11 (Ultralytics) is the workhorse for real-time detection. Training: model = YOLO('yolov8n.pt'); model.train(data='dataset.yaml', epochs=100, imgsz=640, batch=16, device='cuda'). Dataset YAML format: path, train, val, nc (num classes), names. Key hyperparameters: mosaic augmentation (default on, disable last 10 epochs via close_mosaic=10), mixup, degrees, hsv_h/s/v. For small objects, use a higher imgsz (1280) and anchor-free head benefits directly. Export: model.export(format='onnx', opset=17, dynamic=True) or format='engine' for TensorRT.

RT-DETR (Real-Time Detection Transformer) from Baidu: eliminates NMS via set-based prediction, so latency is more deterministic. Use RTDETRv2 via Ultralytics or the original PaddleDetection implementation. Backbone is typically ResNet-50/101 or HGNetv2. Slower to train than YOLO but competitive accuracy at similar FPS on GPU. Good choice when NMS jitter causes downstream tracking instability.

NMS tuning: conf threshold (default 0.25 for inference, raise to 0.5+ for precision-sensitive tasks), iou threshold (default 0.7 for NMS suppression). agnostic_nms=True suppresses across classes — useful when class overlap is likely (e.g., person vs. cyclist partially occluded).

COCO metrics: report [email protected] and [email protected]:0.95. The latter is the standard benchmark metric; @0.5 is more forgiving. Per-class AP breakdown often reveals dataset imbalance issues before overall mAP does.

Read the full file on GitHub · 71 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 71 lines · 69 tokens per session scan A 56e105b5ffae

Subscribe to this mod's changes

computer-vision is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed 4d ago), licensed MIT. It adds 69 tokens to every session and 2,305 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

configuring-vision

The user wants to connect an LLM or vision provider, already has an API key, asks "can I use OpenAI/Anthropic/Gemini/OpenRouter", wants local Ollama, or needs different cheap and strong models. Use this to configure provider-neutral visual understanding without tying Watch Skill to one agent or model vendor.

oxbshw/watch-skill · 71 tokens

segment-anything-model

Foundation model for image segmentation with zero-shot transfer. Use when you need to segment any object in images using points, boxes, or masks as prompts, or automatically generate all object masks in an image.

davila7/claude-code-templates · 45 tokens

yolo-master-agent

Use when the user wants to train, validate, predict, track, export, benchmark, tune, inspect, or orchestrate YOLO-Master / Ultralytics experiments in this repository, including LoRA, MoE, multimodal inference/evaluation, and solutions workflows.

Tencent/YOLO-Master · 60 tokens

Computer Vision Helper

Assist with image analysis, object detection, and visual AI tasks.

eddiebelaval/squire · 16 tokens

segment-anything-model

Foundation model for image segmentation with zero-shot transfer. Use when you need to segment any object in images using points, boxes, or masks as prompts, or automatically generate all object masks in an image.

synthetic-sciences/openscience · 45 tokens

deliver-cv-project

Turn an independently evaluated CV model or pipeline into a verified delivery handoff without copying volatile platform recipes. TRIGGER when: user has a working model, Workflow, OCR pipeline, or tracker and asks to export it, run locally, integrate an app/camera/RTSP source, deploy, productionize, monitor drift, add…

Borda/vision-delivery · 166 tokens