Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

senior-computer-vision高级计算机视觉

Agent Skill

senior-computer-vision 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

539

周安装

22

GitHub Stars

公开资料未说明

下载量

174
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:senior-computer-vision(高级计算机视觉)
来源仓库:https://github.com/rickydwilson-dcs/claude-skills
仓库路径:skills/senior-computer-vision
安装命令:
npx skills add rickydwilson-dcs/claude-skills --skill "senior-computer-vision"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add rickydwilson-dcs/claude-skills --skill "senior-computer-vision"

简介

senior-computer-vision 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它适用于计算机视觉领域的研究检索,帮助 Agent 从大量信息中筛选出与图像识别、处理或分析相关的资料。
  • 通过 GitHub 安装,使用 npx skills add rickydwilson-dcs/claude-skills --skill "senior-computer-vision" 命令即可集成到支持的宿主环境中。
  • 安装前建议确认权限范围和维护状态,并注意是否会触发联网、命令执行或文件读写操作。
  • 可结合来源仓库和原始 README 进一步核验具体用法和功能边界。

SKILL.md

name
senior-computer-vision
title
Senior Computer Vision Skill Package
description
World-class computer vision skill for image/video processing, object detection, segmentation, and visual AI systems. Expertise in PyTorch, OpenCV, YOLO, SAM, diffusion models, and vision transformers. Includes 3D vision, video analysis, real-time processing, and production deployment. Use when building vision AI systems, implementing object detection, training custom vision models, or optimizing inference pipelines.
domain
engineering
subdomain
computer-vision
difficulty
advanced
time-saved
TODO: Quantify time savings
frequency
TODO: Estimate usage frequency
use-cases
related-agents
[]
related-skills
[]
related-commands
[]
orchestrated-by
[]
dependencies
scripts
[]
references
[]
assets
[]
compatibility
python-version
3.8+
platforms
[macos, linux, windows]
tech-stack
[Python 3.8+, Markdown]
examples
title
Example Usage
input
TODO: Add example input for senior-computer-vision
output
TODO: Add expected output
stats
downloads
0
stars
0
rating
0.0
reviews
0
version
v1.0.0
author
Claude Skills Team
contributors
[]
created
2025-10-20
updated
2025-11-23
license
MIT
tags
[analysis, computer, engineering, product, senior, vision]
featured
false
verified
true

Senior Computer Vision Engineer

World-class senior computer vision engineer skill for production-grade AI/ML/Data systems.

Overview

This skill provides world-class computer vision engineering capabilities through three core Python automation tools and comprehensive reference documentation. Whether building object detection systems, training custom vision models, optimizing inference pipelines, or deploying production vision AI, this skill delivers expert-level solutions.

Senior computer vision engineers use this skill for image/video processing, object detection (YOLO, Faster R-CNN, SAM), semantic segmentation, 3D vision, video analysis, real-time processing, and production deployment. Expertise covers PyTorch, TensorFlow, OpenCV, vision transformers, diffusion models, and deployment optimization (TensorRT, ONNX).

Core Value: Accelerate vision AI development by 70%+ while improving model accuracy, inference speed, and production reliability through proven architectures and automated pipelines.

Quick Start

Main Capabilities

# Core Tool 1
python scripts/vision_model_trainer.py --input data/ --output results/

# Core Tool 2  
python scripts/inference_optimizer.py --target project/ --analyze

# Core Tool 3
python scripts/dataset_pipeline_builder.py --config config.yaml --deploy

Core Capabilities

  • Vision Model Training - Object detection, semantic segmentation, instance segmentation using PyTorch, TensorFlow, YOLO, Faster R-CNN, SAM
  • Inference Optimization - Model quantization, TensorRT optimization, ONNX export, batch processing for production deployment
  • Dataset Pipeline Building - Data augmentation, annotation tools integration, train/val/test splits, quality validation
  • Real-Time Video Processing - Frame extraction, object tracking, scene detection, multi-camera processing
  • 3D Computer Vision - Depth estimation, point cloud processing, SLAM, 3D reconstruction
  • Production Deployment - Containerized model serving, REST API generation, load balancing, monitoring dashboards

Python Tools

1. Vision Model Trainer

Train production-ready computer vision models with automated pipelines.

Key Features:

  • Object detection (YOLO, Faster R-CNN, RetinaNet)
  • Semantic segmentation (U-Net, DeepLab, Mask R-CNN)
  • Transfer learning from pre-trained models
  • Automated hyperparameter tuning
  • Training metrics and visualization

Common Usage:

# Train object detection model
python scripts/vision_model_trainer.py --task detection --data ./dataset --model yolov8

# Train segmentation model
python scripts/vision_model_trainer.py --task segmentation --data ./dataset --model unet

# Resume training from checkpoint
python scripts/vision_model_trainer.py --resume checkpoints/best.pth

# Help
python scripts/vision_model_trainer.py --help

Use Cases:

  • Training custom object detectors for specific domains
  • Fine-tuning pre-trained models on new datasets
  • Experimenting with different architectures

2. Inference Optimizer

Optimize trained models for production deployment.

Key Features:

  • Model quantization (INT8, FP16)
  • TensorRT optimization for NVIDIA GPUs
  • ONNX export for cross-platform deployment
  • Batch inference optimization
  • Latency and throughput profiling

Common Usage:

# Optimize model for deployment
python scripts/inference_optimizer.py --model model.pth --target tensorrt

# Export to ONNX
python scripts/inference_optimizer.py --model model.pth --export onnx

# Benchmark inference
python scripts/inference_optimizer.py --model model.pth --benchmark

# Help
python scripts/inference_optimizer.py --help

Use Cases:

  • Reducing inference latency for real-time applications
  • Optimizing models for edge devices
  • Cross-platform model deployment

3. Dataset Pipeline Builder

Build robust dataset pipelines with quality validation.

Key Features:

  • Automated data augmentation (rotation, flip, color jitter, mixup)
  • Train/validation/test splitting strategies
  • Annotation format conversion (COCO, YOLO, Pascal VOC)
  • Data quality validation and outlier detection
  • Dataset versioning and tracking

Common Usage:

# Build dataset pipeline
python scripts/dataset_pipeline_builder.py --input raw_data/ --output processed/

# Apply augmentation
python scripts/dataset_pipeline_builder.py --input data/ --augment --factor 3

# Validate dataset quality
python scripts/dataset_pipeline_builder.py --input data/ --validate

# Help
python scripts/dataset_pipeline_builder.py --help

Use Cases:

  • Preparing datasets for model training
  • Expanding small datasets through augmentation
  • Ensuring dataset quality and consistency

See computer_vision_architectures.md for comprehensive tool documentation and advanced examples.

Core Expertise

This skill covers world-class capabilities in:

  • Advanced production patterns and architectures
  • Scalable system design and implementation
  • Performance optimization at scale
  • MLOps and DataOps best practices
  • Real-time processing and inference
  • Distributed computing frameworks
  • Model deployment and monitoring
  • Security and compliance
  • Cost optimization
  • Team leadership and mentoring

Tech Stack

Languages: Python, SQL, R, Scala, Go ML Frameworks: PyTorch, TensorFlow, Scikit-learn, XGBoost Data Tools: Spark, Airflow, dbt, Kafka, Databricks LLM Frameworks: LangChain, LlamaIndex, DSPy Deployment: Docker, Kubernetes, AWS/GCP/Azure Monitoring: MLflow, Weights & Biases, Prometheus Databases: PostgreSQL, BigQuery, Snowflake, Pinecone

Key Workflows

1. Object Detection Model Training

Time: 2-4 hours for training, 1 hour for optimization

  1. Prepare Dataset - Collect and annotate images, validate quality
   # Build dataset pipeline with augmentation
   python scripts/dataset_pipeline_builder.py --input raw_data/ --output dataset/ --augment --factor 3
  1. Train Model - Train object detection model with optimal hyperparameters
   # Train YOLO model
   python scripts/vision_model_trainer.py --task detection --data dataset/ --model yolov8 --epochs 100
  1. Evaluate Performance - Test on validation set, analyze mAP, precision, recall
  2. Optimize for Deployment - Quantize and optimize for production inference
   # Optimize with TensorRT
   python scripts/inference_optimizer.py --model checkpoints/best.pth --target tensorrt

See object_detection_optimization.md for detailed walkthrough.

2. Real-Time Video Processing Pipeline

Time: 4-6 hours for initial setup

  1. Design Architecture - Define input sources, processing pipeline, output formats
  2. Implement Frame Processing - Object detection, tracking, scene analysis per frame
  3. Optimize Performance - Batch processing, GPU utilization, multi-threading
   # Benchmark inference speed
   python scripts/inference_optimizer.py --model model.pth --benchmark --batch-size 16
  1. Deploy Pipeline - Containerize, setup monitoring, configure auto-scaling

3. Production Model Deployment

Time: 2-3 hours for containerization and deployment

  1. Optimize Model - Quantization, pruning, TensorRT optimization
   # Full optimization pipeline
   python scripts/inference_optimizer.py --model model.pth --optimize-all --target production
  1. Containerize - Create Docker image with model serving API
  2. Deploy to Cloud - Kubernetes deployment, load balancer configuration
  3. Setup Monitoring - Latency tracking, error rates, model drift detection

4. Custom Dataset Preparation

Time: 2-4 hours depending on dataset size

  1. Collect Data - Gather images/videos from relevant sources
  2. Annotate - Use CVAT, LabelImg, or Roboflow for annotations
  3. Validate Quality - Check for annotation errors, class imbalance
   # Validate dataset quality
   python scripts/dataset_pipeline_builder.py --input data/ --validate --report quality.json
  1. Apply Augmentation - Expand dataset with synthetic variations
   # Apply augmentation
   python scripts/dataset_pipeline_builder.py --input data/ --augment --factor 5 --output augmented/

Reference Documentation

1. Computer Vision Architectures

Comprehensive guide available in references/computer_vision_architectures.md covering:

  • Advanced patterns and best practices
  • Production implementation strategies
  • Performance optimization techniques
  • Scalability considerations
  • Security and compliance
  • Real-world case studies

2. Object Detection Optimization

Complete workflow documentation in references/object_detection_optimization.md including:

  • Step-by-step processes
  • Architecture design patterns
  • Tool integration guides
  • Performance tuning strategies
  • Troubleshooting procedures

3. Production Vision Systems

Technical reference guide in references/production_vision_systems.md with:

  • System design principles
  • Implementation examples
  • Configuration best practices
  • Deployment strategies
  • Monitoring and observability

Production Patterns

Pattern 1: Scalable Data Processing

Enterprise-scale data processing with distributed computing:

  • Horizontal scaling architecture
  • Fault-tolerant design
  • Real-time and batch processing
  • Data quality validation
  • Performance monitoring

Pattern 2: ML Model Deployment

Production ML system with high availability:

  • Model serving with low latency
  • A/B testing infrastructure
  • Feature store integration
  • Model monitoring and drift detection
  • Automated retraining pipelines

Pattern 3: Real-Time Inference

High-throughput inference system:

  • Batching and caching strategies
  • Load balancing
  • Auto-scaling
  • Latency optimization
  • Cost optimization

Best Practices

Development

  • Test-driven development
  • Code reviews and pair programming
  • Documentation as code
  • Version control everything
  • Continuous integration

Production

  • Monitor everything critical
  • Automate deployments
  • Feature flags for releases
  • Canary deployments
  • Comprehensive logging

Team Leadership

  • Mentor junior engineers
  • Drive technical decisions
  • Establish coding standards
  • Foster learning culture
  • Cross-functional collaboration

Performance Targets

Latency:

  • P50: < 50ms
  • P95: < 100ms
  • P99: < 200ms

Throughput:

  • Requests/second: > 1000
  • Concurrent users: > 10,000

Availability:

  • Uptime: 99.9%
  • Error rate: < 0.1%

Security & Compliance

  • Authentication & authorization
  • Data encryption (at rest & in transit)
  • PII handling and anonymization
  • GDPR/CCPA compliance
  • Regular security audits
  • Vulnerability management

Common Commands

# Development
python -m pytest tests/ -v --cov
python -m black src/
python -m pylint src/

# Training
python scripts/train.py --config prod.yaml
python scripts/evaluate.py --model best.pth

# Deployment
docker build -t service:v1 .
kubectl apply -f k8s/
helm upgrade service ./charts/

# Monitoring
kubectl logs -f deployment/service
python scripts/health_check.py

Resources

  • Advanced Patterns: references/computer_vision_architectures.md
  • Implementation Guide: references/object_detection_optimization.md
  • Technical Reference: references/production_vision_systems.md
  • Automation Scripts: scripts/ directory

Senior-Level Responsibilities

As a world-class senior professional:

  1. Technical Leadership

- Drive architectural decisions - Mentor team members - Establish best practices - Ensure code quality

  1. Strategic Thinking

- Align with business goals - Evaluate trade-offs - Plan for scale - Manage technical debt

  1. Collaboration

- Work across teams - Communicate effectively - Build consensus - Share knowledge

  1. Innovation

- Stay current with research - Experiment with new approaches - Contribute to community - Drive continuous improvement

  1. Production Excellence

- Ensure high availability - Monitor proactively - Optimize performance - Respond to incidents

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.26%
按下载量换算47

windsurf

25.9%
按下载量换算45

trae

19.23%
按下载量换算33

OpenCode

13.99%
按下载量换算24

Codex

7.88%
按下载量换算14

Antigravity

3.86%
按下载量换算7

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills