技能 人工智能 SAM2交互式目标分割

SAM2交互式目标分割

v20260421
segmentation-sam2
这是一个基于Meta Segment Anything 2 (SAM2)模型的先进AI工具,用于交互式、像素级的目标分割。用户只需点击图像或视频中的任意对象,即可自动生成精确的分割掩码。该功能支持点/框提示、跨帧视频跟踪,并与Annotation Studio深度集成,是进行大规模数据标注和视频分析的理想解决方案。
获取技能
107 次下载
概览

SAM2 Interactive Segmentation

Click anywhere on a video frame to segment objects using Meta's Segment Anything 2. Generates pixel-perfect masks for annotation, tracking, and dataset creation.

What You Get

  • Click-to-segment — click on any object to get its mask
  • Point & box prompts — positive/negative points and bounding box selection
  • Video tracking — segment in one frame, propagate across the clip
  • Annotation Studio — full integration with sidebar Annotation Studio

Protocol

Communicates via JSON lines over stdin/stdout.

Aegis → Skill (stdin)

{"event": "frame", "frame_path": "/tmp/frame.jpg", "frame_id": "frame_1", "request_id": "req_001"}
{"command": "segment", "points": [{"x": 450, "y": 320, "label": 1}], "request_id": "req_002"}
{"command": "track", "frame_path": "/tmp/frame2.jpg", "frame_id": "frame_2", "request_id": "req_003"}
{"command": "stop"}

Skill → Aegis (stdout)

{"event": "segmentation", "type": "ready", "request_id": "", "data": {"model": "sam2-small", "device": "mps"}}
{"event": "segmentation", "type": "encoded", "request_id": "req_001", "data": {"frame_id": "frame_1", "width": 1920, "height": 1080}}
{"event": "segmentation", "type": "segmented", "request_id": "req_002", "data": {"mask_path": "/tmp/mask.png", "mask_b64": "...", "score": 0.95, "bbox": [100, 50, 350, 420]}}
{"event": "segmentation", "type": "tracked", "request_id": "req_003", "data": {"frame_id": "frame_2", "mask_path": "/tmp/track.png", "score": 0.93}}

Installation

The deploy.sh bootstrapper handles everything — Python environment, GPU detection, dependency installation, and model download. No manual setup required.

./deploy.sh
信息
Category 人工智能
Name segmentation-sam2
版本 v20260421
大小 9.42KB
更新时间 2026-06-10
语言