Enforce semantic compatibility constraints directly into instance construction for 3D object detection. Uses MLLM-driven semantic grouping to partition object vocabulary into plausible cross-view category equivalence clusters, preventing geometry-driven over-merging.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add ADu2021/skillXiv --skill group3d-semantic-grouping-detection --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Group3d Semantic Grouping Detection?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/adu2021-group3d-semantic-grouping-detection)More formats (shields.io, HTML) on the badges page.
---
name: group3d-semantic-grouping-detection
title: "Group3D: MLLM-Driven Semantic Grouping for Open-Vocabulary 3D Object Detection"
version: 0.0.3
engine: skillxiv-v0.0.3-claude-opus-4.6
license: MIT
url: https://arxiv.org/abs/2603.21944
keywords: [3D Detection, Semantic Grouping, MLLM, Multi-view, Open-Vocabulary]
description: "Enforce semantic compatibility constraints directly into instance construction for 3D object detection. Uses MLLM-driven semantic grouping to partition object vocabulary into plausible cross-view category equivalence clusters, preventing geometry-driven over-merging."
---
## Component ID
Group-Gated Fragment Merging with Semantic Compatibility Constraints
## Motivation
Open-vocabulary 3D detection from multi-view RGB images typically decouples instance construction from semantic labeling. Fragments are merged based on geometric consistency first, then labeled. This causes irreversible errors when geometric evidence is incomplete or view-dependent, and the approach cannot recover from geometry-driven over-merging decisions.
## The Modification
Group3D integrates semantic constraints into the merge decision itself, requiring **both** semantic compatibility and geometric consistency before combining fragments:
1. **Scene-Adaptive Vocabulary Memory** - Query a multimodal large language model (MLLM) across views to identify object categories present in the scene, then aggregate into a scene-specific vocabulary.
2. **Semantic Compatibility Groups** - The MLLM partitions the vocabulary into groups capturing "plausible cross-view category equivalence" under taxonomy noise. Groups identify categories that could refer to the same physical object while excluding structurally incompatible associations.
3. **Group-Gated Fragment Merging** - Two 3D fragments merge only when they satisfy both conditions:
- **Semantic gate**: Categories belong to the same compatibility group
- **Geometric gate**: Voxel-level spatial overlap meets thresholds
The algorithm processes fragments sorted by spatial extent, attempting merges with existing clusters while respecting both gates.
## Ablation Results
The paper demonstrates:
- Semantic grouping alone improves over geometry-only merging by preventing false positives on geometrically overlapping but semantically distinct objects
- Multi-view evidence accumulation (cross-view confidence aggregation) provides consistent improvements
- The approach prevents catastrophic geometric over-merging while maintaining high recall
- Performance gains are consistent across different scene complexities and view counts
## Conditions
- Requires multimodal LLM access for vocabulary and compatibility group generation
- Works best when geometric evidence is incomplete or ambiguous (where semantic constraints have highest impact)
- Assumes sufficient multi-view coverage to accumulate meaningful cross-view evidence
- Scene-adaptive group generation requires per-scene inference time (amortized cost)
## Drop-In Checklist
- [ ] Integrate MLLM query module to extract scene vocabulary from multi-view images
- [ ] Implement semantic compatibility group generation (MLLM partitions vocabulary)
- [ ] Add group membership check to fragment merge decision logic
- [ ] Implement group-gated threshold for geometric consistency checks
- [ ] Add multi-view evidence aggregation for final instance labeling
- [ ] Validate that semantic gates prevent geometry-driven over-merging
- [ ] Benchmark detection accuracy (precision/recall) on open-vocabulary 3D detection benchmarks
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!