computer-vision-guide

computer-vision-guide is a skill for Claude Code, Codex from khalilbenaz/claude-skills-collection. It costs 95 tokens per session (2,473 once invoked), scanned A, original, MIT.

A guide to computer vision, where software understands images or video. It covers sorting images into classes, finding objects, and labeling image regions using tools such as PyTorch, TensorFlow, and OpenCV.

In plain words
What is it for?
Use it to design, train, and deploy image-classification, object-detection, or image-segmentation systems for cloud or edge devices.
Why use it?
It helps choose an approach based on the task, available data, speed needs, and deployment target instead of guessing at a model.

Skill for Claude CodeCodex

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

Good fit Use it to design, train, and deploy image-classification, object-detection, or image-segmentation systems for cloud or edge devices.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/khalilbenaz/claude-skills-collection/computer-vision-guide
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 khalilbenaz/claude-skills-collection --skill computer-vision-guide
Clone the repo
git clone --depth 1 https://github.com/khalilbenaz/claude-skills-collection

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/computer-vision-guide/github.svg)](https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/computer-vision-guide)
Your own site
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/computer-vision-guide"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/computer-vision-guide/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for computer-vision-guide

Your own site · 80×15
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/computer-vision-guide"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/computer-vision-guide.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,473 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00095 $0.02473
Opus 5 $0.00048 $0.01236
Sonnet 5 $0.00019 $0.00495
Haiku 4.5 $0.00010 $0.00247

Measured 10d ago against content hash 647922dd21c9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

computer-vision-guide 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 10d 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.

ai-ml-skills/computer-vision-guide/SKILL.md · 249 lines

How it starts

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

Computer Vision Guide

Guide opérationnel pour concevoir, entraîner et déployer des solutions de vision par ordinateur : classification, détection d'objets, segmentation sémantique/d'instance.


1. Choisir la bonne tâche et le bon modèle

Critères de décision

Besoin Tâche Modèles recommandés (2026)
« Qu'est-ce que c'est ? » Classification EfficientNetV2, ConvNeXt-v2, ViT-S/16
« Où est l'objet ? » (boîtes) Détection YOLOv10/v11, RT-DETR, Co-DETR
« Pixel par pixel, quelle classe ? » Segmentation sémantique SegFormer-B4, OneFormer
« Chaque instance séparément ? » Segmentation d'instance Mask2Former, YOLOv8-seg
« N'importe quel objet à prompter » Segmentation zéro-shot SAM 2 (Meta)
Traitement bas-niveau (filtrage, calibration) Vision classique OpenCV (pas de DL)

Règle de décision rapide :

  • Contraintes temps réel & edge → YOLO (v10+) ou EfficientDet
  • Précision maximale, budget GPU → Co-DETR, Mask2Former
  • Peu de données (< 500 images) → fine-tuning d'un modèle fondation (SAM 2, DINOv2)
  • Mobile/embarqué → MobileNetV4, YOLO-NAS-s, TFLite

2. Préparer le dataset

Structure de dossiers (classification)

data/
  train/
    chien/ img001.jpg …
    chat/  img002.jpg …
  val/
  test/

Outils d'annotation recommandés

Outil Détection Segmentation Gratuit
CVAT (auto-annotate avec SAM)
Roboflow freemium
LabelImg

Convertir vers YOLO format (depuis COCO)

pip install roboflow
# ou directement via la CLI Roboflow
roboflow convert -f yolov8 -i coco_annotations.json -o ./yolo_dataset

Vérifier la distribution des classes

from collections import Counter
import json

with open("annotations/instances_train.json") as f:
    coco = json.load(f)

cat_ids = {c["id"]: c["name"] for c in coco["categories"]}
counts = Counter(ann["category_id"] for ann in coco["annotations"])
for cid, n in counts.most_common():
    print(f"{cat_ids[cid]}: {n}")

Read the full file on GitHub · 249 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. 10d ago First seen · 249 lines · 95 tokens per session scan A 647922dd21c9

Subscribe to this mod's changes

computer-vision-guide is a skill published in the GitHub repository khalilbenaz/claude-skills-collection (22 stars, last pushed 16d ago), licensed MIT. It adds 95 tokens to every session and 2,473 once invoked, about $0.0005 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-30.