Research
Towards 3D Objectness Learning in an Open World
Towards 3D Objectness Learning in an Open World Overview Research area: 3D computer vision — specifically open-world / class-agnostic 3D object detection, multi-modal (point cloud + RGB) fusion, and 2
- arXiv
- 2510.17686
- Published
- 2025-10-20
- Authors
- Taichi Liu, Zhenyu Wang, Ruofeng Liu, Guang Wang, Desheng Zhang
AI summary
Towards 3D Objectness Learning in an Open WorldOverview
Research area: 3D computer vision — specifically open-world / class-agnostic 3D object detection, multi-modal (point cloud + RGB) fusion, and 2D foundation-model transfer to 3D perception.
Technical level: Advanced. The paper assumes familiarity with 3D object detection architectures, voxel-based backbones, transformer detection heads, mixture-of-experts routing, and models such as SAM.
Scope in one sentence: This paper defines and tackles the problem of class-agnostic, prompt-free open-world 3D object detection — detecting all objects in a 3D scene, including categories never seen during training, using a multi-modal detector called OP3Det.
What This Paper Is About
Standard 3D detectors are trained on a fixed set of categories and therefore fail when a scene contains objects outside that set, and datasets that try to get around this by supplying text prompts still miss objects whenever the prompt vocabulary is incomplete or ambiguous. The authors argue that what is missing is a notion of "3D objectness" — a class-agnostic judgment of whether a region of space is a discrete object or background — and they propose a detector that learns this directly from 2D semantic and 3D geometric cues without any hand-crafted text prompts at inference time. The goal is high-recall discovery of all objects, not just accurate labeling of a predefined subset.
Key Contributions
-
A new problem setting. The authors formally define class-agnostic open-world 3D object detection, which they state is the first formal definition and treatment of this problem in the 3D domain. The objective is detecting all objects in a 3D scene rather than only those from a fixed label set or a supplied vocabulary.
-
OP3Det, a prompt-free class-agnostic 3D detector. A multi-modal detector that combines a 3D object discovery stage with multi-modal training, requiring no text prompts or semantic priors as inputs at inference time.
-
Multi-scale point sampling for 2D–3D association. A strategy that refines the uniformly distributed point prompts fed to SAM using 3D spatial proximity, suppressing the fragmented and partial masks SAM tends to produce and exposing a wider range of object instances for 3D discovery.
-
A cross-modal mixture-of-experts (MoE) module. Guided by a multi-modal router, it dynamically selects between uni-modal (point cloud or image) and multi-modal pathways so the model can adaptively weight 2D semantic information, 3D geometric information, or a combination, rather than relying on fused features alone.
Main Findings
-
Cross-category gains indoors. On SUN RGB-D, OP3Det reaches AR_novel 78.8, AR_all 89.7, AR_base 93.1, and AP_all 65.4, versus the strongest closed-world comparator FCAF3D at AR_novel 65.3 / AR_all 86.5 / AR_base 92.7 / AP_all 62.0, and the open-vocabulary comparator OV-Uni3DETR at AR_novel 62.8 / AR_all 82.5 / AR_base 88.8 / AP_all 57.4. The paper reports this as a 13.5% AR_novel increase over FCAF3D and 16% over OV-Uni3DETR, with an average increase of over 3% in AR_all and AP_all.
-
Larger-vocabulary gains on ScanNet. OP3Det achieves AR_novel 79.9, AR_all 83.2, AR_base 87.3, and AP_all 28.6, which the authors describe as a 12.3% improvement in AR_novel on this dataset.
-
Base classes do not degrade. The paper emphasizes that improvements on novel classes come without any decline in base-class performance on either indoor dataset.
-
Cross-dataset generalization. In the SUN RGB-D → ScanNet transfer, OP3Det reaches AR_25 77.9 and AP_25 21.2, which the authors describe as a 30% AR_25 improvement with an AP_25 improvement of almost 10%; cross-dataset performance is only 2% lower in AR_25 than in-dataset results. In the ScanNet → SUN RGB-D direction it reaches AR_25 73.1 and AP_25 22.3.
-
Outdoor generalization on KITTI. Trained only on the car class and evaluated on car, pedestrian, and cyclist, OP3Det achieves AP_3D easy 63.56 / medium 66.75 / hard 66.42 and AP_BEV easy 65.13 / medium 71.37 / hard 70.34. On medium difficulty, described as the most important metric, it exceeds existing methods by more than 1%.
-
Class-specific transfer. When the 2D class-agnostic model is replaced with a class-specific detector, OP3Det reaches AP_novel 14.31 / AP_base 49.63 / AP_all 21.99 on SUN RGB-D and 17.77 / 32.12 / 20.16 on ScanNet, outperforming OV-Uni3DETR by more than 2% in AP_novel and surpassing GLRD.
-
SAM alone is not enough. The ablation shows that adding SAM without refinement drops performance relative to the baseline, with a 4.2% decrease in AR_novel and a 10.7% decrease in AR_base, because SAM is not object-centric and produces fragmented masks. Adding multi-scale point sampling plus post-processing raises AR_novel by 19.2% and AR_base by 10.9%.
-
Fusion must be guided. Naive summation (AR_novel 65.4) or concatenation (66.0) of modalities performs worse than a point-cloud-only model (69.2) under class-agnostic binary prediction. The cross-modal MoE instead reaches AR_novel 78.8, improving AR_all by 1.8% and AR_novel by 9.6%. An image-only model performs far worse (AR_novel 38.4).
Methodology in Plain English
Step 1 — Discover objects before training. The authors run SAM over RGB images using a regular 64x64 grid of point prompts to produce class-agnostic masks. Since SAM often returns object parts and small fragments, they add a multi-scale point sampling step: they pick a source point with a high object prior, then filter neighboring points by their true 3D distance (obtained by projecting points into the image plane via the camera intrinsics and extrinsics, K·R_t), repeating until no more points qualify. Because a single distance threshold cannot handle all object scales, they use several thresholds — (0.2, 0.5, 1, 2) in the experiments — and merge results with NMS. Remaining noisy masks are filtered by a pre-trained class-agnostic 2D detector, which also refines box locations. Objectness scores are formed by multiplying SAM's IoU predictions with the 2D detector's objectness scores. The resulting 2D boxes are projected back into 3D space and clustered to produce 3D boxes for training.
Step 2 — Learn objectness with a cross-modal MoE. Point clouds and images are encoded separately (sparse 3D ResNet for voxels, ResNet50 with FPN for images), and image features are projected into voxel space to form a fused representation. Self-attention is applied over the spatial dimensions of the point, image, and fused features. A router — a 3D convolution, global average pooling, a fully connected layer, and a softmax — produces routing probabilities that weight three experts (semantic, geometric, fused), each implemented as three 3D convolution layers with kernel sizes 1, 3, and 1. The combined representation is passed to a 3D detection transformer head.
Step 3 — Train and infer. Training uses the losses from prior work but replaces classification with a binary class-agnostic foreground/background loss. Annotated and discovered 3D boxes are used together; multi-view images have features extracted per view and aggregated in voxel space. At inference, the model operates directly on point cloud–image pairs with no extra stages and no text prompts. Implementation uses mmdetection3D with the AdamW optimizer, and a 0.6 threshold filters low-quality discovered 3D objects.
Why This Matters
Impact on research. The paper reframes open-world 3D perception away from vocabulary-driven detection toward objectness as a learnable, class-agnostic property. Its core empirical claim is that 2D foundation models can supply the semantic breadth that 3D datasets lack — but only if their noisy outputs are cleaned up using 3D geometry, and only if fusion is routed rather than naively concatenated. The finding that naive multi-modal fusion hurts in the class-agnostic binary setting is a notable counterpoint to the common assumption that more modalities always help.
Real-world applications:
- Autonomous driving and mobile robotics, where the set of relevant object categories changes with the operating domain and a detector must not miss obstacles simply because they were not in the training taxonomy.
- Warehouse and logistics automation, where robots encounter irregularly shaped or unlabeled items that no predefined class list covers.
- Indoor service and assistive robots, where high-recall discovery of everyday objects matters more than precise category naming.
- Data annotation and dataset bootstrapping, since the method discovers candidate 3D objects without text prompts, which can seed labels for new scenes.
Industry relevance. The approach requires only point cloud–image pairs at inference and slots into a standard multi-modal 3D detector stack, so it is compatible with existing sensor configurations. The demonstrated cross-dataset transfer — where models trained on one sensing setup (single-view RGB-D) still work on another (reconstructed multi-view RGB-D), with AR_25 only 2% below in-dataset results — speaks directly to deployment concerns about sensor and domain shift.
Future Directions
- Extending beyond the evaluated domains. The authors state the method is easily extendable to outdoor scenes, class-specific detection, and the 2D domain; the KITTI and class-specific experiments are early evidence of this, but coverage remains limited to the datasets tested.
- Robustness to outdoor modality gaps. The paper notes that outdoor LiDAR points are sparser, foreground objects have far fewer points, and background dominates, making the gap between LiDAR and 2D images larger than indoors — a limitation the authors raise themselves.
- Sharpening novel-class metrics. The authors repeatedly note that novel-class objects are a small proportion of scenes, so their effect on overall AR and AP is limited, and that AP for base and novel classes cannot be straightforwardly computed under binary class-agnostic classification; they point to an appendix discussion of the AP metric.
- Better object-centric segmentation priors. The ablation shows SAM's fragmentation actively harms performance without the sampling and filtering pipeline, leaving open how much further the discovery stage could improve if the underlying segmentation were more object-centric.
Target Audience
Researchers and practitioners in 3D computer vision and autonomous perception who work on open-world, open-vocabulary, or class-agnostic detection; engineers building multi-modal 3D detection pipelines who want to know when and how to fuse LiDAR and camera data; and anyone interested in transferring 2D foundation-model knowledge into 3D tasks, particularly those facing sparse 3D annotations. Readers should already be comfortable with 3D detection architectures and mixture-of-experts concepts, as the paper's derivations and comparisons assume that background.
Authors’ abstract
Recent advancements in 3D object detection and novel category detection have made significant progress, yet research on learning generalized 3D objectness remains insufficient. In this paper, we delve into learning open-world 3D objectness, which focuses on detecting all objects in a 3D scene, including novel objects unseen during training. Traditional closed-set 3D detectors struggle to generalize to open-world scenarios, while directly incorporating 3D open-vocabulary models for open-world ability struggles with vocabulary expansion and semantic overlap. To achieve generalized 3D object discovery, We propose OP3Det, a class-agnostic Open-World Prompt-free 3D Detector to detect any objects within 3D scenes without relying on hand-crafted text prompts. We introduce the strong generalization and zero-shot capabilities of 2D foundation models, utilizing both 2D semantic priors and 3D geometric priors for class-agnostic proposals to broaden 3D object discovery. Then, by integrating complementary information from point cloud and RGB image in the cross-modal mixture of experts, OP3Det dynamically routes uni-modal and multi-modal features to learn generalized 3D objectness. Extensive experiments demonstrate the extraordinary performance of OP3Det, which significantly surpasses existing open-world 3D detectors by up to 16.0% in AR and achieves a 13.5% improvement compared to closed-world 3D detectors.