Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

yolo-vision-toolsyolo 视觉工具

Agent Skill

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

总安装

17,380

周安装

717

GitHub Stars

公开资料未说明

下载量

5,679
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:yolo-vision-tools(yolo 视觉工具)
来源仓库:https://github.com/ruoyu05/yolo-vision-tools
安装命令:
openclaw skills install yolo-vision-tools
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install yolo-vision-tools

简介

使用Ultralytics YOLO执行计算机视觉任务。

  • 支持图像分类、人体姿态估计和物体检测。
  • 适合需要图像分析或视频处理的场景。yolo-vision-tools 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装前建议确认是否会触发文件读写操作。
  • 安装方式:clawhub,适用于 OpenClaw 宿主环境。

SKILL.md

name
yolo-vision-tools
description
Use Ultralytics YOLO to perform computer vision tasks, such as detecting people or objects in images and videos, classifying images, estimating human poses, and tracking cars, people, or animals in videos.
argument-hint
|

Ultralytics YOLO Vision Tools

Ultralytics YOLO is a state-of-the-art computer vision framework supporting multiple tasks including object detection, instance segmentation, image classification, pose estimation, and oriented bounding box detection. This skill provides comprehensive guidance for using YOLO effectively.

Latest Model: YOLO26 (released January 2026) features end-to-end NMS-free inference and optimized edge deployment. For stable production workloads, both YOLO26 and YOLO11 are recommended.

Quick Start

1. Installation & Environment Check

# Install/update Ultralytics
pip install -U ultralytics

# Verify installation and check environment
yolo checks

The yolo checks command validates Python version, PyTorch, CUDA, GPU availability, and all dependencies. For detailed environment troubleshooting, see Environment Check or use the provided environment check script: python scripts/check_environment.py.

2. Basic Usage Examples

Python Interface

from ultralytics import YOLO

# Load a model (YOLO automatically infers task from model)
model = YOLO("yolo26n.pt")  # or your custom model path

# Predict on various sources
# By default, outputs are saved to workspace/yolo-vision folder
results = model("image.jpg")                     # image file → saved to yolo-vision/outputs/images/
results = model("video.mp4", stream=True)        # video with streaming → saved to yolo-vision/outputs/videos/
results = model("https://example.com/image.jpg") # URL → saved to yolo-vision/outputs/images/
results = model(0, show=True)                   # webcam with display → saved to yolo-vision/outputs/videos/

# Custom output directory (optional)
results = model("image.jpg", project="/custom/path")  # save to custom directory

CLI Interface

# Basic syntax: yolo TASK MODE ARGS
# By default, outputs are saved to workspace/yolo-vision folder
yolo predict model=yolo26n.pt source="image.jpg"  # → saved to yolo-vision/runs/detect/predict/

# Task-specific examples
yolo detect predict model=yolo26n.pt source="video.mp4"  # → saved to yolo-vision/runs/detect/predict/
yolo segment predict model=yolo26n-seg.pt source="image.jpg"  # → saved to yolo-vision/runs/segment/predict/
yolo pose predict model=yolo26n-pose.pt source="image.jpg"  # → saved to yolo-vision/runs/pose/predict/

# Custom output directory (optional)
yolo predict model=yolo26n.pt source="image.jpg" project="/custom/path"  # save to custom directory

3. Model Selection

For quick start, use these default models:

  • Detection: yolo26n.pt (nano), yolo26s.pt (small), yolo26m.pt (medium)
  • Segmentation: yolo26n-seg.pt, yolo26s-seg.pt, yolo26m-seg.pt
  • Classification: yolo26n-cls.pt, yolo26s-cls.pt, yolo26m-cls.pt
  • Pose Estimation: yolo26n-pose.pt, yolo26s-pose.pt, yolo26m-pose.pt
  • Oriented Detection: yolo26n-obb.pt, yolo26s-obb.pt, yolo26m-obb.pt

For complete model list and selection guidance: Model Names | Model Selection

Core Workflow

Step 1: Understand YOLO Tasks

YOLO supports five main computer vision tasks. Choose the right task for your application:

  • Detection: Identify and localize objects with bounding boxes
  • Segmentation: Generate pixel-level masks for objects
  • Classification: Categorize entire images
  • Pose Estimation: Detect keypoints for pose analysis
  • Oriented Detection: Detect rotated objects with angle parameter

Detailed comparison: Task Types

Step 2: Select Appropriate Model

Consider these factors when selecting a model:

  • Speed vs. Accuracy: Nano (fastest) → X (most accurate)
  • Hardware Constraints: GPU memory, CPU performance
  • Application Requirements: Real-time vs. batch processing

Guidance: Model Selection

Step 3: Configure Parameters

Common configuration parameters:

  • conf: Confidence threshold (default: 0.25)
  • iou: IoU threshold for NMS (default: 0.7)
  • imgsz: Input image size (default: 640)
  • device: Device ID (0 for first GPU, cpu for CPU)
  • save: Save results to disk
  • show: Display results in real-time

Complete examples: Configuration Samples

Step 4: Process Results

YOLO returns Results objects containing:

  • boxes: Bounding boxes, confidence scores, class labels
  • masks: Segmentation masks (for segmentation tasks)
  • keypoints: Pose keypoints (for pose estimation)
  • probs: Classification probabilities (for classification)
  • obb: Oriented bounding boxes (for OBB tasks)

Advanced Topics

Training Custom Models

from ultralytics import YOLO

# Load a model
model = YOLO("yolo26n.pt")

# Train on custom dataset
results = model.train(data="dataset.yaml", epochs=100, imgsz=640)

Training guide: Training Basics | Dataset Preparation

Installation Options

Multiple installation methods available:

  • pip: pip install -U ultralytics
  • Conda: conda install -c conda-forge ultralytics
  • Docker: Pre-built images for GPU/CPU environments
  • From Source: For development and customization

Detailed instructions: Installation Guide

Performance Optimization

  • Streaming Mode: Use stream=True for videos/long sequences to reduce memory
  • Batch Processing: Process multiple images together for efficiency
  • Hardware Acceleration: Configure CUDA, TensorRT, or OpenVINO for optimal performance

Reference Documentation

DocumentDescription
Environment CheckComprehensive environment validation and troubleshooting
Installation GuideAll installation methods (pip, Conda, Docker, source)
Task TypesDetailed comparison of YOLO tasks and use cases
Model NamesComplete YOLO26 model list with specifications
Model SelectionStrategy for choosing models based on requirements
Configuration SamplesParameter configuration examples for various scenarios
Dataset PreparationGuide for preparing custom datasets for training
Training BasicsFundamentals of training YOLO models on custom data
Parameter ReferenceComplete reference for all YOLO configuration parameters

Utility Scripts

To save token usage and provide ready-to-use tools, the following Python scripts are available in the scripts/ directory:

ScriptDescriptionUsage Example
check_environment.pyComprehensive environment diagnosticspython scripts/check_environment.py
config_templates.pyReady-to-use configuration templatesfrom scripts.config_templates import get_production_config
dataset_tools.pyDataset preparation and conversion toolsfrom scripts.dataset_tools import coco_to_yolo
training_helpers.pyTraining, evaluation, and model managementfrom scripts.training_helpers import evaluate_model
quick_tests.pyQuick functionality testspython scripts/quick_tests.py --test environment
model_utils.pyModel selection and validation utilitiesfrom scripts.model_utils import select_model

Benefits of using scripts:

  • Save tokens: Large code blocks are extracted from documentation
  • Ready-to-use: No need to copy-paste code from documentation
  • Modular: Import only what you need
  • Maintainable: Scripts can be updated independently

Troubleshooting

Common Issues

Q: yolo command not found after installation? A: Try python -m ultralytics yolo or check Python environment PATH.

Q: How to use specific GPU? A: Set device=0 (first GPU) or device=cpu for CPU-only mode.

Q: Model downloads slowly? A: Set ULTRALYTICS_HOME environment variable to control cache location.

Q: How to filter specific classes? A: Use classes parameter: classes=[0, 2, 5] (class indices).

Q: Memory issues with long videos? A: Use stream=True to process videos as generators.

Q: Real-time webcam support? A: Yes, use source=0 (default camera) with show=True for live display.

Getting Help

  • Run yolo checks to diagnose environment issues
  • Check official documentation: https://docs.ultralytics.com
  • Review configuration reference: https://docs.ultralytics.com/usage/cfg/

Output Directory Convention

Default Output Location

When processing images or videos with YOLO, if the user does not specify an output directory, all generated files will be saved to the workspace's yolo-vision folder.

File Organization

The yolo-vision folder will be organized as follows:

yolo-vision/
├── inputs/            # Original input files (copied for reference)
├── outputs/           # Processed files with detection results
│   ├── images/        # Detected images
│   ├── videos/        # Detected videos  
│   └── previews/      # Preview images
├── reports/           # Analysis reports and statistics
│   ├── json/          # JSON format reports
│   ├── markdown/      # Markdown format reports
│   └── csv/           # CSV format data
├── models/            # Downloaded YOLO models
│   ├── yolo26/        # YOLO26 models
│   ├── yolo11/        # YOLO11 models
│   └── custom/        # Custom trained models
└── logs/              # Processing logs and debug information

Automatic Folder Creation

The skill will automatically:

  1. Create the yolo-vision folder if it doesn't exist
  2. Create all subdirectories as needed
  3. Organize files by date and task type
  4. Generate timestamp-based filenames for easy tracking

Example Usage

# Without specifying output directory - uses default yolo-vision folder
results = model("image.jpg")  # Output saved to yolo-vision/outputs/images/

# With custom output directory
results = model("image.jpg", save_dir="/custom/path")  # Uses specified path

Benefits

  1. Consistency: All YOLO outputs in one predictable location
  2. Organization: Files automatically categorized by type
  3. Backup: Input files are preserved for reference
  4. Reproducibility: Easy to find and compare previous analyses
  5. Clean Workspace: Prevents clutter in the main workspace directory

User Override

Users can still specify custom output directories when needed:

  • By providing a save_dir parameter in Python code
  • By using the --project flag in CLI commands
  • By setting the ULTRALYTICS_PROJECT environment variable

License Note: Ultralytics YOLO is available under AGPL-3.0 for open source use and Enterprise License for commercial applications. Review licensing at https://ultralytics.com/license.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

展示第三方安全扫描或审计结果

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

平台分布

OpenClaw

87.14%
按下载量换算4,949

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills