computer-vision-expert

Designs and optimizes computer vision pipelines using YOLO26, SAM 3, and vision language models.

Updated Aug 28, 2026
One-click install
npx skills add https://github.com/miyake-san/sogo-agent-platform --skill computer-vision-expert-miyake-san
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: computer-vision-expert
Source: https://github.com/miyake-san/sogo-agent-platform/tree/main/skills/experimental/computer-vision-expert
Command: npx skills add https://github.com/miyake-san/sogo-agent-platform --skill computer-vision-expert-miyake-san

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Building modern computer vision systems requires navigating fast-moving model choices, deployment constraints, and geometry fundamentals. This Skill provides expert guidance for designing detection, segmentation, and spatial analysis pipelines with 2026 state-of-the-art models. ## Core Features & Use Cases - Real-Time Detection: Design NMS-free YOLO26 pipelines optimized for edge deployment with ONNX, TensorRT, and NPU targets. - Promptable Segmentation: Use SAM 3 text-to-mask and SAM 3D for zero-shot segmentation, tracking, and 3D reconstruction without custom detectors. - Spatial Intelligence: Apply Depth Anything V2, camera calibration, and visual SLAM for depth estimation and scene reconstruction. - Use Case: Combine YOLO26 for fast candidate proposals with SAM 3 for precise mask refinement in an industrial inspection system that isolates parts via text prompts. ## Quick Start Ask the agent to design a real-time defect detection pipeline using YOLO26 and SAM 3 for deployment on an edge device.

Frequently Asked Questions about computer-vision-expert

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a real-time object detection system with YOLO26?

YOLO26 uses an NMS-free end-to-end architecture that removes Non-Maximum Suppression post-processing, reducing latency. Use ProgLoss and STAL assignment for small-object precision, and export via simplified ONNX or TensorRT pipelines for edge deployment.

How to segment objects using text prompts with SAM 3?

SAM 3 supports text-to-mask segmentation, letting you describe targets in natural language like "the blue container on the right" without manual point prompts. One unified model handles detection, segmentation, and tracking with 2x accuracy over SAM 2.

YOLO26 vs SAM 3 for industrial inspection tasks?

Use YOLO26 for fast candidate proposal in real-time detection, then SAM 3 for precise mask refinement. This combined pattern avoids training custom detectors for every part variation while keeping latency low.

Can YOLO26 models run on edge devices and NPUs?

Yes, YOLO26's simplified architecture removes Distribution Focal Loss and is highly compatible with NPU and TPU hardware. Its NMS-free design also simplifies ONNX and TensorRT exports for low-power deployment.

Why does SAM 3 use too much VRAM on my GPU?

SAM 3 has high VRAM requirements for local inference. Use quantized or distilled model versions to reduce memory consumption while retaining most segmentation accuracy on consumer GPUs.

When should I avoid click-based segmentation workflows?

Avoid manual point-prompt segmentation when SAM 3's text grounding can describe the target instead. Text prompts eliminate repetitive clicking, though ambiguous descriptions like "bolt" should be refined to "the 5mm bolt" for accuracy.