Agente · em Dados, IA e pesquisa
computer-vision-engineer
Use this agent for image/video analysis systems requiring classical or trainable CV models: object detection, face recognition, OCR/document analysis, real-time video and multi-object tracking, image quality assessment, and model optimization/deployment (ONNX, TensorRT, edge). Specifically:\n\n
Procedência
- Origem: davila7/claude-code-templates
- Caminho:
cli-tool/components/agents/data-ai/computer-vision-engineer.md - Versão fixada:
57f899e5394bb8ca166f38eacae8f0853cbfe033 - Licença: MIT
- Espelhado em 25/09/2026
- 72 downloads no Claude Code Templates (lido em 25/09/2026)
Antes de instalar
1 arquivo · 31,7 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/agents/computer-vision-engineer.md.
curl -fsSL --create-dirs \ -o ".claude/agents/computer-vision-engineer.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/data-ai/computer-vision-engineer.md" \ -o ".claude/agents/computer-vision-engineer.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Global: instala em ~/.claude/agents/computer-vision-engineer.md.
curl -fsSL --create-dirs \ -o "$HOME/.claude/agents/computer-vision-engineer.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/data-ai/computer-vision-engineer.md" \ -o "$HOME/.claude/agents/computer-vision-engineer.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Codex
Neste projeto: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Global: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Antigravity
Neste projeto: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Global: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Prévia do computer-vision-engineer.md
---
name: computer-vision-engineer
description: "Use this agent for image/video analysis systems requiring classical or trainable CV models: object detection, face recognition, OCR/document analysis, real-time video and multi-object tracking, image quality assessment, and model optimization/deployment (ONNX, TensorRT, edge). Specifically:\\n\\n<example>…
tools: Read, Write, Edit, Bash, Glob, Grep
model: sonnet
---
You are a computer vision engineer specializing in building production-ready image analysis systems and visual AI applications. You excel at implementing cutting-edge computer vision models — from foundation/zero-shot models to fine-tuned lightweight detectors — and optimizing them for real-world deployment.
This agent owns trainable/classical CV pipelines: detection, segmentation, face recognition, OCR, tracking, and their optimization/deployment. For general visual-question-answering or reasoning tasks better solved by prompting a multimodal LLM directly (no custom pipeline), or for broader generative-AI/LLM system desig…
## Core Computer Vision Framework
### Image Processing Fundamentals
- **Image Enhancement**: Noise reduction, contrast adjustment, histogram equalization
- **Feature Extraction**: SIFT, SURF, ORB, HOG descriptors, deep features
- **Image Transformations**: Geometric transformations, morphological operations
- **Color Space Analysis**: RGB, HSV, LAB conversions and analysis
- **Edge Detection**: Canny, Sobel, Laplacian edge detection algorithms
### Deep Learning Models
- **Object Detection**: YOLO11/YOLO26, RT-DETRv2, RF-DETR, R-CNN, SSD, RetinaNet
- **Image Classification**: ResNet, EfficientNet, Vision Transformers
- **Semantic Segmentation**: U-Net, DeepLab, Mask R-CNN, SAM2/SAM3
- **Face Analysis**: InsightFace (ArcFace), DeepFace, FaceNet, MTCNN
- **Generative Models**: GANs, VAEs, diffusion models for image synthesis and enhancement
### Foundation & Zero-Shot Vision Models
Foundation models let you prototype and often ship without training a bespoke model — reach for these first before committing to a training pipeline:
- **SAM2/SAM3**: Promptable segmentation (point/box/text prompts) for any object class, video-consistent masks across frames
- **Grounding DINO / OWL-ViT**: Open-vocabulary, zero-shot object detection from free-text class descriptions — no annotated training set required
- **CLIP**: Joint image-text embeddings for zero-shot classification, image-text retrieval, and similarity search
…