Expert in 3D computer vision labeling tools, workflows, and AI-assisted annotation for LiDAR, point clouds, and sensor fusion. Covers SAM4D/Point-SAM, human-in-the-loop architectures, and vertical-specific training strategies. Activate on '3D labeling', 'point cloud annotation', 'LiDAR labeling', 'SAM 3D', 'SAM4D', 'sensor fusion annotation', '3D bounding box', 'semantic segmentation point cloud'. NOT for 2D image labeling (use clip-aware-embeddings), general ML training (use ml-engineer), video annotation without 3D (use computer-vision-pipeline), or VLM prompt engineering (use prompt-engineer).
npx skills add https://github.com/curiositech/some_claude_skills --skill 3d-cv-labeling-2026
Expert guidance on 3D annotation tools, AI-assisted labeling workflows, and training architectures for LiDAR/point cloud computer vision in autonomous vehicles, robotics, infrastructure inspection, and geospatial applications.
✅ Use for:
❌ NOT for:
| Tool | Strength | Best For | Key AI Feature |
|------|----------|----------|----------------|
| BasicAI | One-click detection | Autonomous driving | Pre-labeling models fine-tuned for AV |
| Supervisely | Customization | R&D teams | AI tracking, 2D→3D single-click |
| Segments.ai | 2D+3D sync | Robotics perception | Sequential propagation |
| Deepen AI | Sensor calibration | In-house perception | Pixel-perfect multi-sensor |
| Dataloop | Enterprise MLOps | Large annotation teams | Model-assisted + Point Cloud Focus |
| Encord | Full workflow | Multi-modal projects | Track-ID management |
| Ango Hub (iMerit) | Dense annotation | Complex multi-modal | Frame-to-frame propagation |
| Tool | Maturity | Limitations |
|------|----------|-------------|
| CVAT | Stable | 3D bounding boxes only, limited interpolation |
| 3D BAT | Good | Full-surround annotation, semi-auto tracking |
| Label Studio | Partial 3D | Better for multi-format, not specialized 3D |
Key innovation: Unified Multi-modal Positional Encoding (UMPE) aligns camera and LiDAR in shared 3D space.
Camera Stream → Feature Extraction → ┐
├→ UMPE Alignment → Promptable 3D Segmentation
LiDAR Stream → Point Encoding → ┘
Data engine breakthrough: Automatic pseudo-label generation at 100x+ faster than human annotation using:
Dataset: Waymo-4DSeg (300k+ camera-LiDAR aligned masklets)
Architecture: Efficient transformer designed specifically for point clouds (not adapted from 2D).
Knowledge distillation: 2D SAM → 3D Point-SAM via data engine that generates:
Benchmarks: Outperforms state-of-the-art on indoor (ScanNet) and outdoor (nuScenes, Waymo) datasets.
Two-stage approach:
Best for: UAV/drone workflows where colorized point clouds from L1 LiDAR + RGB cameras are available.
Old approach: Human labels → Train model → Deploy
New approach: Model assists → Human validates → Rapid iteration
┌─────────────────────────────────────────────────────────┐
│ LABELING PIPELINE │
├─────────────────────────────────────────────────────────┤
│ Raw Data → AI Pre-label → Human Review → QA Check │
│ │ │ │ │ │
│ │ SAM4D/VLM Corrections Consensus │
│ │ generates only where sampling │
│ │ proposals AI uncertain │
└─────────────────────────────────────────────────────────┘
| Approach | Time for 10k frames | Annotation Quality |
|----------|--------------------|--------------------|
| Manual only | 400 hours | 95% (expert) |
| AI pre-label + review | 50 hours | 97% (AI+human) |
| SAM4D data engine | 4 hours | 92% (pseudo) |
The 80/20 rule: ~80% of ML project time is data prep. Model-in-the-loop cuts this dramatically.
| Aspect | Specialized (YOLO, PointPillars) | VLMs (GPT-4V, Gemini) |
|--------|----------------------------------|----------------------|
| Latency | 10-50ms (real-time) | 500-2000ms |
| 3D precision | Strong geometric priors | Noisy text-3D alignment |
| Novel objects | Closed-set (what you train) | Open-vocabulary |
| Compute | Edge-deployable | GPU cluster required |
| Hallucinations | None (deterministic) | Yes (safety-critical risk) |
| Domain shift | Struggles (fog, night) | Better generalization |
Use Specialized Models When:
Use VLMs/Foundation Models When:
┌───────────────────────┐
│ VLM (Slow Brain) │
│ • Scene understanding│
│ • Open vocabulary │
│ • Anomaly detection │
└──────────┬────────────┘
│ High-level context
▼
┌──────────────────────────────────────────────────────────┐
│ Specialized Detector (Fast Brain) │
│ • Real-time inference (YOLO, PointPillars, CenterPoint)│
│ • Known object detection & tracking │
│ • Safety-critical decisions │
└──────────────────────────────────────────────────────────┘
Examples:
Objects: Utility poles, insulators, conductors, vegetation, damage types
Sensor fusion: RGB + thermal + LiDAR
Training data needs:
Architecture:
LiDAR → Point cloud encoder → ┐
Thermal → 2D encoder → ├→ Fusion → Multi-task head
RGB → 2D encoder → ┘ ├→ Object detection
├→ Defect classification
└→ Clearance regression
Objects: Vehicles, pedestrians, cyclists, traffic signs, lane markings
Key requirement: Temporal consistency (track-IDs across frames)
Training data needs:
Architecture: CenterPoint, PointPillars, or Voxel-based detectors with BEV (Bird's Eye View) representation.
Objects: Crop rows, canopy height, fuel load, fire spread boundaries
Sensor fusion: RGB + multispectral + LiDAR
Training data needs:
Why not just VLM? VLMs can't:
Novice thinking: "SAM segments anything, so I'll just run it on my LiDAR data"
Reality:
Correct approach: Use Point-SAM for native 3D, or project to 2D for SAM → lift back to 3D.
Novice thinking: "AI pre-labels are 95% accurate, we can skip review"
Reality:
Correct approach: Tier 1 (safety-critical) always human-validated. Use confidence thresholds for Tier 2/3.
Novice thinking: "GPT-4V can identify damage in my photos"
Reality:
Correct approach: Use VLM for data generation/exploration, specialized model for deployment.
Novice thinking: "LiDAR is enough for 3D detection"
Reality:
Correct approach: Sensor fusion from day one. SAM4D shows fusion pseudo-labels > single-modal.
Do you need real-time inference?
/ \
YES NO
| |
Use specialized Is this exploration?
detector (YOLO, / \
CenterPoint) YES NO
| | |
Have labeled data? Use VLM Generate
/ \ for zero- pseudo-labels
YES NO shot with SAM4D
| |
Train model Use SAM4D/
Point-SAM for
auto-labeling
| Requirement | Recommended Tool |
|-------------|------------------|
| Autonomous driving at scale | Deepen AI or BasicAI |
| R&D/research flexibility | Supervisely or Segments.ai |
| Multi-modal (camera+LiDAR+radar) | Ango Hub or Dataloop |
| Self-hosted/open source | CVAT + 3D plugins or 3D BAT |
| Robotics perception | Segments.ai (2D+3D sync) |
| Budget-conscious | Label Studio + custom scripts |
/references/sam4d-architecture.md - Deep dive on SAM4D UMPE and data engine/references/tool-comparison-matrix.md - Detailed feature comparison of all tools/references/hybrid-architecture-examples.md - VOLTRON, DrivePI implementation patterns/references/vertical-training-recipes.md - Infrastructure, AV, agriculture specificsCreate new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.
This skill should be used when working with reinforcement learning tasks including high-performance RL training, custom environment development, vectorized parallel simulation, multi-agent systems, or integration with existing RL environments (Gymnasium, PettingZoo, Atari, Procgen, etc.). Use this skill for implementing PPO training, creating PufferEnv environments, optimizing RL performance, or developing policies with CNNs/LSTMs.
Run evaluations for one, multiple, or all skills using the agent orchestration framework. Make sure to use this skill whenever the user asks to run evals, test a skill's performance, run benchmarks, or compare baseline versus with-skill execution.
You are an expert prompt engineer specializing in crafting effective prompts for LLMs through advanced techniques including constitutional AI, chain-of-thought reasoning, and model-specific optimizati
Implements the NOWAIT technique for efficient reasoning in R1-style LLMs. Use when optimizing inference of reasoning models (QwQ, DeepSeek-R1, Phi4-Reasoning, Qwen3, Kimi-VL, QvQ), reducing chain-of-thought token usage by 27-51% while preserving accuracy. Triggers on "optimize reasoning", "reduce thinking tokens", "efficient inference", "suppress reflection tokens", or when working with verbose CoT outputs.
Provides guidance for automatically evolving and optimizing AI agents across any domain using LLM-driven evolution algorithms. Use when building self-improving agents, optimizing agent prompts and skills against benchmarks, or implementing automated agent evaluation loops.
Elite AI context engineering specialist mastering dynamic context management, vector databases, knowledge graphs, and intelligent memory systems.
亚马逊卖家专用的 skill 创建器(中文)。当用户想把一个亚马逊运营/自媒体/日常工作流程变成可复用的 skill 时使用。触发场景包括但不限于:用户说"我想做一个 skill""把这个流程变成 skill""帮我写个自动化""优化我已有的 skill""给这个工作流做个自动化",即使用户没用"skill"这个词,只要在描述"以后每次都这样做"的重复性工作时也应触发。本 skill 的核心差异:强制用户先回答 6 个业务问题(业务目标/过去做法/具体步骤/方法论/调用方式/期望输出)再进入创建流程,防止产出空洞 skill。Create new skills, improve existing skills, run evals and benchmarks — tailored for Amazon sellers with a Chinese-first workflow.
Take curiositech/3d-cv-labeling-2026 from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.