3d-cv-labeling-2026
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).
What this skill does
# 3D Computer Vision Labeling Expert (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.
## When to Use This Skill
✅ **Use for:**
- Selecting 3D point cloud annotation tools (BasicAI, Supervisely, Segments.ai, Deepen AI)
- Implementing SAM4D/Point-SAM for auto-labeling workflows
- Designing human-in-the-loop annotation pipelines
- Sensor fusion annotation (camera + LiDAR + radar)
- Training architecture decisions: specialized models vs VLMs
- Vertical-specific 3D detection (autonomous driving, inspection, agriculture, wildfire)
❌ **NOT for:**
- 2D image labeling without 3D context (use clip-aware-embeddings or Label Studio docs)
- General ML model training (use ml-engineer)
- Video annotation without point clouds (use computer-vision-pipeline)
- VLM prompt engineering (use prompt-engineer)
- Photogrammetry/3D reconstruction (use geo processing tools)
---
## 2026 Tool Landscape Overview
### Commercial Leaders
| 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 |
### Open Source Options
| 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 |
---
## SAM Evolution for 3D (2024-2026)
### SAM4D (ICCV 2025) - Multi-Modal + Temporal
**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:
1. VFM-driven video masklets
2. Spatiotemporal 4D reconstruction
3. Cross-modal masklet fusion
**Dataset**: Waymo-4DSeg (300k+ camera-LiDAR aligned masklets)
### Point-SAM (ICLR 2025) - Native 3D Prompting
**Architecture**: Efficient transformer designed specifically for point clouds (not adapted from 2D).
**Knowledge distillation**: 2D SAM → 3D Point-SAM via data engine that generates:
- Part-level pseudo-labels
- Object-level pseudo-labels
**Benchmarks**: Outperforms state-of-the-art on indoor (ScanNet) and outdoor (nuScenes, Waymo) datasets.
### SAMNet++ (2025) - Hybrid Pipeline
Two-stage approach:
1. SAM performs unsupervised segmentation
2. Adapted PointNet++ refines for semantic accuracy
**Best for**: UAV/drone workflows where colorized point clouds from L1 LiDAR + RGB cameras are available.
---
## Human-in-the-Loop Architecture
### The Model-in-the-Loop Paradigm (2023-2026)
**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 │
└─────────────────────────────────────────────────────────┘
```
### Efficiency Gains
| 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.
### Quality Assurance Strategies
1. **Consensus sampling**: Multiple annotators on subset, measure agreement
2. **Active learning**: Route uncertain predictions to experts
3. **Tiered review**: Tier 1 (critical objects) get SME validation, Tier 2/3 use AI confidence thresholds
---
## Why Specialized Training > VLMs for 3D
### The Core Trade-off
| 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 |
### When to Use Each
**Use Specialized Models When:**
- Real-time inference required (autonomous vehicles, robotics)
- Known object classes (infrastructure defects, crop types)
- Safety-critical deployment (can't tolerate hallucinations)
- Edge deployment (drones, embedded systems)
**Use VLMs/Foundation Models When:**
- Zero-shot exploration of new domains
- Generating training data (weak labels)
- Open-vocabulary requirements ("find anything damaged")
- Domain adaptation bootstrapping
### The Hybrid Architecture (2025+ Best Practice)
```
┌───────────────────────┐
│ 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**:
- VOLTRON: YOLOv8 + LLaMA2 for hazard identification
- DrivePI: Point clouds + multi-view + language instructions (0.5B Qwen2.5)
---
## Vertical-Specific Training Architecture
### Infrastructure Inspection
**Objects**: Utility poles, insulators, conductors, vegetation, damage types
**Sensor fusion**: RGB + thermal + LiDAR
**Training data needs**:
- Thermal anomaly samples (varied temperatures)
- Damage taxonomy (cracks, corrosion, rust grades)
- Vegetation clearance measurements
**Architecture**:
```
LiDAR → Point cloud encoder → ┐
Thermal → 2D encoder → ├→ Fusion → Multi-task head
RGB → 2D encoder → ┘ ├→ Object detection
├→ Defect classification
└→ Clearance regression
```
### Autonomous Driving
**Objects**: Vehicles, pedestrians, cyclists, traffic signs, lane markings
**Key requirement**: Temporal consistency (track-IDs across frames)
**Training data needs**:
- Long-tail scenarios (emergency vehicles, animals, debris)
- Adverse weather (fog, rain, snow, night)
- Edge cases (construction zones, accidents)
**Architecture**: CenterPoint, PointPillars, or Voxel-based detectors with BEV (Bird's Eye View) repRelated in Image & Video
watch
IncludedWatch a video (URL or local path). Downloads with yt-dlp, extracts auto-scaled frames with ffmpeg, pulls the transcript from captions (or Whisper API fallback), and hands the result to Claude so it can answer questions about what's in the video.
physical-ai-defect-image-generation
IncludedUse when the user wants to orchestrate defect image generation, run associated setup, or handle outputs on OSMO. The Day 0 path handles cold-start with USD-to-ROI, image-edit augmentation, and AnomalyGen to create initial PCBA datasets. The Day 1 path performs inference and labeling on real images. This skill helps with first-time asset setup, creation of finetuning checkpoints, and configuring deployment. Trigger keywords: defect image generation, dig workflow, dig pipeline, defect image detection workflow, aoi pipeline, aoi anomalygen, usd2roi anomalygen, day 0 pcba, day 1 pcba, day 1 real-photo alignment, day 1 manual roi, metal surface anomaly, glass defect, anomalygen finetune, setup_pcb, setup_metal, setup_glass, setup_pretrained, dig setup, dig datasets, dig pretrained checkpoint, dig image-edit endpoint.
accelint-react-best-practices
IncludedReact performance optimization and best practices. ALWAYS use this skill when working with any React code - writing components, hooks, JSX; refactoring; optimizing re-renders, memoization, state management; reviewing for performance; fixing hydration mismatches; debugging infinite re-renders, stale closures, input focus loss, animations restarting; preventing remounting; implementing transitions, lazy initialization, effect dependencies. Even simple React tasks benefit from these patterns. Covers React 19+ (useEffectEvent, Activity, ref props). Triggers - useEffect, useState, useMemo, useCallback, memo, inline components, nested components, components inside components, re-render, performance, hydration, SSR, Next.js, useDeferredValue, combined hooks.
elevenlabs-agents
IncludedBuild conversational AI voice agents with ElevenLabs Platform using React, JavaScript, React Native, or Swift SDKs. Configure agents, tools (client/server/MCP), RAG knowledge bases, multi-voice, and Scribe real-time STT. Use when: building voice chat interfaces, implementing AI phone agents with Twilio, configuring agent workflows or tools, adding RAG knowledge bases, testing with CLI "agents as code", or troubleshooting deprecated @11labs packages, Android audio cutoff, CSP violations, dynamic variables, or WebRTC config. Keywords: ElevenLabs Agents, ElevenLabs voice agents, AI voice agents, conversational AI, @elevenlabs/react, @elevenlabs/client, @elevenlabs/react-native, @elevenlabs/elevenlabs-js, @elevenlabs/agents-cli, elevenlabs SDK, voice AI, TTS, text-to-speech, ASR, speech recognition, turn-taking model, WebRTC voice, WebSocket voice, ElevenLabs conversation, agent system prompt, agent tools, agent knowledge base, RAG voice agents, multi-voice agents, pronunciation dictionary, voice speed control, elevenlabs scribe, @11labs deprecated, Android audio cutoff, CSP violation elevenlabs, dynamic variables elevenlabs, case-sensitive tool names, webhook authentication
humanizer
IncludedHumanize AI-generated text by detecting and removing patterns typical of LLM output. Rewrites text to sound natural, specific, and human. Uses 28 pattern detectors, 560+ AI vocabulary terms across 3 tiers, and statistical analysis (burstiness, type-token ratio, readability) for comprehensive detection. Use when asked to humanize text, de-AI writing, make content sound more natural/human, review writing for AI patterns, score text for AI detection, or improve AI-generated drafts. Covers content, language, style, communication, and filler categories.
generating-mermaid-diagrams
IncludedSalesforce architecture diagrams using Mermaid with ASCII fallback. Use this skill when generating text-based diagrams for Salesforce architecture, OAuth flows, ERDs, integration sequences, or Agentforce structure. TRIGGER when: user says "diagram", "visualize", "ERD", or asks for sequence diagrams, flowcharts, class diagrams, or architecture visualizations in Mermaid. DO NOT TRIGGER when: user wants PNG/SVG image output (use generating-visual-diagrams), or asks about non-Salesforce systems.