Abstract
Novel view synthesis, which is essential for three-dimensional (3D) reconstruction, traditionally requires dense image sets and pre-calibrated camera parameters. However, in industrial digital twin applications spatial constraints often limit data acquisition to sparse views that fail to provide the feature correspondences necessary for accurate modeling. To overcome this bottleneck, a semantic-guided 3D Gaussian splatting (3DGS) framework tailored to sparse-view industrial reconstruction was introduced. Rather than relying on precise initialization and dense inputs, the proposed method couples explicit 3D Gaussian representations with the dense and unconstrained stereo 3D reconstruction (DUSt3R) end-to-end pose estimation model. The severe occlusions, typical of factory environments, are handled by incorporating Segment Anything Model 2 (SAM2) to hierarchically decompose the scene, yielding a structured representation that improves optimization stability. A probability density field-driven algorithm is subsequently applied to extract lightweight meshes directly from the optimized Gaussian point clouds. Evaluations on the MipNeRF360 benchmark and a custom industrial dataset demonstrated substantial improvements in the structural similarity index measure. By enabling robust reconstruction from limited viewpoints, this pipeline offers a practical geometric foundation for automated inspection and remote equipment monitoring.
Introduction
Modern industrial manufacturing is increasingly relying on digital twin systems to safely and efficiently manage complex, large-scale facilities [1]. Unlike static computer-aided design or building information modeling assets, digital twins enable bidirectional interaction and real-time state synchronization. This dynamic mapping is particularly crucial in hazardous environments, such as high-temperature or high-radiation zones, where manual inspection is costly and poses severe risks to human life. In these scenarios, high-fidelity three-dimensional (3D) reconstructions serve as the geometric foundation for unmanned monitoring, predictive maintenance, and remote execution [2].
However, constructing accurate 3D environments in real-world factories presents formidable challenges. Traditional pipelines, such as laser scanning and structure from motion (SfM) [3, 4], typically require dense image sets with over 60% overlap to establish reliable feature correspondences [5]. Factory floors are densely packed with equipment, which severely restricts camera placement and often limits data acquisition to a few sparse views. Furthermore, industrial equipment frequently exhibits intense metallic reflections and causes complex occlusions, which can degrade the completeness of traditional reconstruction methods by over 40% [5]. These factors invariably lead to topological holes, geometric distortions, and missing texture [6]. Compounding these issues is the quadratic computational complexity of SfM, which makes rapid deployment highly impractical.
Recent advancements in novel view synthesis offer potential solutions, yet limitations remain. Neural radiance fields (NeRFs) [7] utilize multilayer perceptrons (MLPs) for volume rendering; however, their slow training and inference speeds hinder practical industrial applications [8, 9]. Conversely, 3D Gaussian splatting (3DGS) [10] parameterizes scenes using explicit anisotropic 3D Gaussian primitives and differentiable rasterization to achieve real-time rendering [11]. Although 3DGS excels in dense inputs, its performance degrades precipitously under sparse-view conditions because of heavy dependency on accurate SfM initialization [12].
To bridge the gap between raw sparse data and interactive, lightweight digital representations [13], this paper proposes a semantic-guided sparse-view 3DGS framework tailored for industrial digital twins. This approach bypasses the initialization limitations of the traditional SfM by coupling explicit Gaussian representations with the end-to-end pose estimation model of dense and unconstrained stereo 3D reconstruction (DUSt3R) [14]. To handle metallic reflections and severe clutter, the vision foundation model SAM2 is integrated for semantic-guided hierarchical decoupling [15,16,17]. Finally, the optimized point clouds are processed into lightweight meshes, ensuring seamless execution on the Web or virtual reality platforms.
The core contributions of this work are summarized as follows:
-
Sparse-view 3DGS optimization: A joint optimization pipeline is introduced to eliminate the dependency on dense inputs. By bridging explicit 3D Gaussian representations with globally aligned pose priors derived from DUSt3R, the framework achieves robust geometric initialization merely in seconds.
-
Semantic-guidance hierarchical decoupling: SAM2 is leveraged to hierarchically decompose occluded industrial scenes. This isolates core equipment from environmental noise and lighting interference, guiding Gaussian convergence toward physically plausible solutions with improved boundary fidelity and structural coherence.
-
Implicit-explicit hybrid modeling: A probability density field-driven mesh generation algorithm is designed to efficiently convert the optimized 3D Gaussian point clouds into lightweight, watertight mesh models.
The full pipeline completes full-scene reconstruction and view synthesis within 60 second. As illustrated in Fig. 1, this approach significantly improves the structural similarity index measure (SSIM) scores on both the MipNeRF360 benchmark and a custom industrial dataset, providing a highly reliable geometric basis for automated factory inspection and equipment health management.
Comparative analysis under sparse 3-view input conditions. The proposed method achieves superior geometric consistency and detail fidelity compared to 3D Gaussian splatting (3DGS) and COLMAP-free (CF)-3DGS, with reconstructions significantly closer to ground truth references
Sparse-view reconstruction
Sparse-view 3D reconstruction aims to synthesize photorealistic novel views from a limited set of perspectives, which is pivotal for cost-effective industrial digital twin development [7]. In NeRF [18], the computational inefficiency of scene representation through implicit MLPs hinders real-time industrial deployment. Although various NeRF-based methods have explored depth regularization [19,20,21] and vision-based priors [22,23,24] to mitigate sparse-view challenges, the high inference cost remains a significant bottleneck in practical applications [3].
Recently, 3DGS [25, 26], which replaces implicit MLPs with explicit anisotropic 3D Gaussian primitives [10], has emerged as a breakthrough. By combining parametric representation with differentiable rasterization, 3DGS achieves real-time rendering quality. Despite its efficiency, 3DGS suffers from severe over-smoothing and overfitting under sparse inputs [27]. This limitation primarily stems from the dependency on high-quality SfM initialization, which frequently fails in industrial scenarios due to insufficient feature correspondence. Recent attempts to mitigate these issues [12, 28] confirm that initialization quality remains the fundamental bottleneck in robust cross-scene generalization.
Reconstruction model DUSt3R
Traditional 3DGS initialization heavily depends on COLMAP, a classic SfM pipeline that performs feature detection, matching, and bundle adjustment to estimate camera parameters and generate sparse point clouds. Under sparse-view conditions (\( < \)12 views), COLMAP exhibits dramatic degradation in point cloud accuracy because of insufficient feature correspondence [27], leading to flawed Gaussian initialization and subsequent reconstruction artifacts, such as geometric distortions and texture blurring. Similar robustness issues regarding feature selection and data association have also been extensively discussed in the literature on dynamic visual simultaneous localization and mapping [29].
The DUSt3R model [14] addresses this limitation through an end-to-end uncalibrated two-view reconstruction framework, capable of recovering camera poses and sparse point clouds within 2 second without pre-calibrated parameters. Compared to COLMAP, DUSt3R reduces peak graphics processing unit (GPU) memory consumption and achieves sublinear complexity growth with an increasing number of views [27], making it suitable for sparse-view industrial scenarios.
Notably, DUSt3R’s globally aligned geometric priors provide a critical solution to 3DGS’s initialization bottleneck. Recent works such as InstantSplat [27], which initialize Gaussian primitives on DUSt3R-derived point clouds, have demonstrated improved sparse-view performance; however, they lack semantic guidance for handling occluded industrial environments. The proposed framework addresses this gap.
Semantic guided image segmentation
Semantic information plays a vital role in enhancing 3D reconstruction robustness, particularly for industrial scenes with complex occlusions and metallic reflections. In 3DGS, overlapping Gaussian primitives often cause blurred boundaries and detail loss, as the model struggles to distinguish object edges from noise under sparse inputs [12]. Early integration attempts using traditional segmentation methods failed to achieve satisfactory results because of limited generalization across industrial object categories [30]. In the medical imaging community, attention-augmented U-net variants such as deformable convolution and attention gate U-net have demonstrated that carefully designed dual-channel attention modules can significantly improve segmentation robustness under challenging noise and class imbalance conditions [31].
The emergence of transformer-based vision foundation models has revolutionized semantic segmentation. The segment anything model (SAM) [32] pioneered the “promptable segmentation” paradigm, enabling zero-shot generalization through large-scale training and interactive prompting. Its successor, SAM2 [33], further improved complex scene robustness via three key enhancements: (1) a dynamic weight fusion mechanism that aligns visual features with multimodal prompts (points, boxes, text) across transformer layers; (2) hierarchical prompt embedding that reduces computational complexity while preserving long-range dependencies; and (3) cross-view mask propagation enabled by epipolar geometry constraints. Compared to specialized models, such as Segment Everything Everywhere All at Once [34], which focus on universal segmentation and the model that segments everything in context, namely Segmentation Generative Pre-trained Transformer [35], SAM2 achieves state-of-the-art performance on Common Objects in Context [36], achieving a better balance between accuracy and efficiency.
Despite these advancements, the integration of SAM2-style semantic guidance with 3DGS remains underexplored in sparse-view industrial reconstruction. Existing works either rely on manual annotation or fail to leverage hierarchical semantic structures [37], which limits their ability to handle occluded equipment and cluttered factory environments, thereby motivating the semantic-guided decoupling strategy of this study.
Considering these, particularly the unreliable camera pose estimation and image registration from COLMAP under sparse-view conditions, this paper proposes a dual-model fusion framework for semantic-aware reconstruction. This framework integrates DUSt3R as a 3D prior model to provide globally aligned geometric initialization for 3D Gaussians and leverages the vision foundation model SAM2 for hierarchical decoupling of industrial scenes. This synergistic integration enables parallel optimization of 3D Gaussian attributes and camera parameters, effectively addressing the limitations of conventional approaches.
Methods
This paper proposes an enhanced method based on the DUSt3R framework to address sparse 3D reconstruction requirements for complex power plant scenarios. The core innovation lies in integrating multimodal semantic constraints with robust geometric optimization. As illustrated in Fig. 2, the methodology comprises the following key components.
The proposed framework employs dense and unconstrained stereo 3D reconstruction to estimate camera parameters and initialize point clouds and 3D Gaussian primitives. Building upon this, SAM2 facilitates semantic comprehension and hierarchical geometric decoupling of input images. Ultimately, surface reconstruction coupled with mesh optimization is executed to enhance 3D reconstruction performance under sparse-view conditions. DUSt3R: Dense and unconstrained stereo 3D reconstruction; SAM: Segment anything model; 3DGS: 3D Gaussian splatting
Sparse-view 3DGS optimization
Sparse-view reconstruction module. The DUSt3R model generates initialization inputs for 3DGS. DUSt3R’s end-to-end reconstruction model takes two images as input and outputs per-pixel point maps and confidence maps. The ground-truth point maps, \({\widehat {\bf{P}}_{1,1}}\) and \({\widehat {\bf{P}}_{2,1}}\), obtained from the dataset, correspond to view pair (1,2), with the camera origin defined in View 1. The subscript (2,1) in \({\widehat {\bf{P}}_{2,1}}\) indicates that View 2’s coordinate system is anchored to View 1. The regression loss for DUSt3R training is defined as:
where \(v \in \{1,2\}\) denotes the view index; the \({\bf{P}}\) and \(\widehat {\bf{P}}\) represent predicted and ground-truth values, respectively. To handle the scale ambiguity between predictions and the ground truth, DUSt3R normalizes the point maps using scaling factors \({z_i} = {\rm{norm}}({{\bf{P}}_{1,1}},{{\bf{P}}_{2,1}})\) and \({\hat z_i} = {\rm{norm}}({\widehat {\bf{P}}_{1,1}},{\widehat {\bf{P}}_{2,1}})\). Here, mark D refers to the distance from all valid points to the origin:
For 3DGS initialization, both intrinsic and extrinsic camera parameters must be acquired. The Weiszfeld algorithm [38] computes focal lengths for each camera:
where \({i^\prime } = i - \frac{W}{2}\) and \({j^\prime } = j - \frac{H}{2}\) represent centered pixel indices, and \(P\) denotes the point-maps. The final camera focal length \(\bar f\) is obtained by averaging across all training views: \(\bar f = mean({f^*})\).
To extend pairwise-aligned camera poses to global alignment, first, a fully connected graph \({{\cal P}}({{\cal V}},{{\cal E}})\) is constructed, with vertices \({{\cal V}}\) representing N input views and edges \({{\cal E}}\) that denote image pairs with shared visual content. For any image pair \({I_n}\),\({I_m}\), the transformation matrices \({T_e}\), scaling factors \({\sigma _e}\), and globally aligned point maps \(\tilde P\) are optimized as follows:
where \(\omega _{v,e}^i\) denotes the confidence weights, and \(P_{v,e}^i\) represents the point-map projections for view \(v\) in edge \(e\). To avoid trivial solutions (e.g., \({\sigma _e} = 0\)), DUSt3R enforces the constraint \(\mathop \prod \limits_e {\sigma _e} = 1\).
Differentiable 3D Gaussian rendering. The optimized point map \({\tilde P^ * }\) is converted into a 3D Gaussian representation:
where\(\Sigma_i=R_iS_iS_i^\top R_i^\top\) is parameterized by rotation matrices \(R_i\) and anisotropic scaling \(S_i\). The differentiable projection is implemented via the InstantSplat renderer [27]:
This pipeline achieves parallelization through tiled compute unified device architecture kernels, attaining real-time rendering at 30frames per second on NVIDIA RTX 4090 platforms.
Semantic-guidance hierarchical decoupling
This module leverages the vision foundation model SAM2 to achieve hierarchical decoupling of industrial scenes, providing structured representations for core reconstruction tasks. Given a sparse image sequence \(\mathcal{I}=\{I_t\}_{t=1}^T \subset \mathbb{R}^{H\times W \times 3}\), the system first employs SAM2’s prompt encoder to map user-provided spatial coordinates \(\mathcal{P}_t=\{(x_i,y_i)\}_{i=1}^k\) into semantic query vectors:
where \(\text{PE}(\cdot)\) denotes Fourier positional encoding; \(\gamma: \mathbb{R}^d \to \mathbb{R}^d\) is a lightweight adapter; and \(\mathcal{F}_t \in \mathbb{R}^{\frac{H}{16}\times\frac{W}{16}\times256}\) represents the multiscale features generated by the SAM2 encoder. This design enables the system to adapt to industrial scene characteristics through parameter-efficient fine-tuning of lightweight adapters, while largely preserving the pretrained model’s zero-shot capabilities.
The mask decoder generates foreground segmentation results through cross-layer attention mechanisms based on the query vector \(\mathbf{q}_t\):
where \(W_Q, W_K, W_V \in \mathbb{R}^{d \times d}\) are learnable projection matrices, and L = 8 indicates the number of attention layers. To address the occlusion challenges in sparse-view scenarios, epipolar geometry constraints are introduced to establish a cross-view mask propagation model. For adjacent view pairs \((I_t, I_{t+1})\), temporal consistency of masks is achieved through optical flow estimation of deformation fields \(\mathbf{F}_{t \to t+1} \in \mathbb{R}^{H\times W\times 2}\):
where \(\mathbf{V}_{t \to t+1}^{\text{vis}} \in \{0,1\}^{H\times W}\) denotes the depth-based visibility mask, and \(\mathcal{W}(\cdot)\) represents differentiable bilinear sampling. This process fuses multiview predictions into a unified representation \(\hat{\mathbf{M}}_t^{\text{fg}} = \bigcup_{\tau \in \mathcal{N}(t)} \pi_{t \to \tau}(\mathbf{M}_\tau^{\text{fg}}),\) where \(\pi_{t \to \tau}\) indicates camera pose-based projective transformations. The hierarchical reconstruction stage processes the decoupled foreground \(\mathcal{I}^{\text{fg}} = \{\mathbf{M}_t^{\text{fg}} \odot I_t\}\) and background \(\mathcal{I}^{\text{bg}} = \{(1-\mathbf{M}_t^{\text{fg}}) \odot I_t\}\), which are then fed into the sparse-view 3DGS optimization module for Gaussian point cloud generation. The image decoupling effect is shown in Fig. 3.
Semantic-guidance hierarchical decoupling successfully guides the hierarchical decomposition of scenes
Implicit-explicit hybrid modeling
Surface reconstruction framework based on probability density fields. Surface reconstruction from probability density fields employs a variational implicit surface reconstruction framework to convert the discrete and potentially noisy Gaussian point cloud representation into a continuous, smooth, and watertight mesh. This approach defines the target surface as the zero-level set of a scalar-valued implicit function \(f: \mathbb{R}^3 \to \mathbb{R}\). The function \(f\) is constructed based on the probability density field induced by the optimized 3D Gaussians:
where \(\{p_i, \Sigma_i\}_{i=1}^N\) are the centers and covariances of the Gaussians, respectively. The surface is then extracted by finding the isosurface \(f(x) = t\) for a given density threshold \(t\).
To determine the optimal implicit function \(f\), an energy minimization problem was formulated. This problem is inherently ill-posed, as infinitely many functions can satisfy the data constraints. Therefore, regularization is essential to ensure a unique and well-behaved solution, particularly in regions with sparse or noisy data. Therefore, the optimization objective combined a data fidelity term with a hybrid regularization term:
where \(S\) is a set of points sampled from the space to enforce the constraint, and \(\mathcal{L}_{\text{reg}}\) is the carefully designed regularizer.
The regularization term, \(\mathcal{L}_{\text{reg}} = \lambda_1 ||\nabla f||_2 \)\(+ \lambda_2 ||\nabla^2 f||_F\), consists of two complementary components that work in synergy. The first term, \(\lambda_1 ||\nabla f||_2\), is a first-order regularizer based on the Dirichlet energy. In the context of learning implicit representations, this term acts as a soft Eikonal constraint, encouraging the gradient of the implicit field to have a uniform magnitude near the surface, which is a fundamental property of signed distance functions.
However, first-order priors alone are known to be insufficient for ensuring higher-order smoothness and can produce undesirable artifacts such as sharp creases. Therefore, a second-order regularization term, \(\lambda_2 ||\nabla^2 f||_F\), that penalizes the Frobenius norm of the function’s Hessian matrix was introduced. This term was inspired by thin-plate spline models and enforces \(C^2\) smoothness, ensuring a smoothly varying normal field across the surface. Crucially, these two terms are not redundant. The first-order term primarily governs the behavior of the implicit function on and near the data points, whereas the second-order term dominates away from the data, forcing the gradient field to remain constant, thereby preventing the formation of spurious surface sheets in empty space. This hybrid approach is essential for robustly handling the noisy and incomplete point clouds generated by 3DGS and is consistent with state-of-the-art practices in neural surface reconstruction that combine Eikonal and smoothness losses for stability and fidelity.
The final optimized implicit function \(f\) provides a continuous and smooth representation of the scene geometry. Multi-resolution hash encoding was employed to accelerate spatial discretization and extract the final mesh \(M_0(V_0, F_0)\), using a differentiable marching cubes algorithm. The surface reconstruction results that are based on probability density fields are demonstrated in Fig. 4.
Surface reconstruction results
Experimental setup
Datasets. The proposed method was evaluated on the MipNeRF360 [39] and custom industrial scene datasets. The MipNeRF360 dataset provides complex large-scale environments with wide viewing angles. The custom industrial dataset comprises factory inspection scenarios captured using consumer-grade smartphone cameras (1024 \(\times\) 1024 resolution), simulating real-world industrial inspection workflows. This dataset contains intricate industrial equipment and occluded scenes, with all the images acquired without pre-calibrated camera intrinsics or extrinsics.
Metrics. The 3D reconstruction quality for both datasets was assessed by employing two standard metrics: SSIM [40] to quantify the structural similarity between rendered and ground-truth images and learned perceptual image patch similarity (LPIPS) [41] to measure the perceptual differences through deep feature comparisons.
Implementation details. The implementation used PyTorch with training/inference on an NVIDIA RTX 4090 GPU. Other hardware configurations included an Intel i9-13900 CPU and 64 GB of RAM. The model was subjected to adaptive moment estimation (Adam) for 1000 iterations. The pre-trained DUSt3R model was used, initializing it at a 1024 \(\times\) 1024 resolution, with multiview geometry constraints implemented through differentiable Gauss-Newton optimization.
Baselines. Comparative experiments included: 3DGS [10]: Explicit 3D Gaussian splatting requiring COLMAP-derived camera parameters. CF-3DGS [37]: Single-view initialized Gaussian reconstruction that incrementally incorporates training views without COLMAP dependencies, aligning with the camera-agnostic design of the proposed approach.
Results and discussion
Experimental results
Quantitative and qualitative results. As demonstrated in Tables 1 and 2, the proposed method consistently outperformed alternative approaches under 3/6/12-view configurations. The qualitative analysis in Fig. 5 reveals significant disparities in visual reconstruction quality across the methods. Compared to ground-truth imagery, traditional 3DGS struggles with detail recovery and geometric consistency, particularly under sparse-view conditions, exhibiting blurring artifacts and structural distortions. CF-3DGS similarly underperforms in sparse-view scenarios. This limitation stems from error-prone pose predictions caused by the complex optimization process under limited viewing angles. Figure 6 illustrates the application of the proposed method across various real-world industrial scenarios.
Qualitative results on the MipNeRF360 and custom industrial datasets demonstrate that the proposed method effectively preserves scene details while mitigating the artifacts caused by sparse input views in 3D Gaussian splatting. Compared with COLMAP-free 3D Gaussian splatting, the proposed method generates sharper reconstructions by introducing semantic priors. 3DGS: 3D Gaussian splatting; CF-3DGS: COLMAP-free 3D Gaussian splatting; GT: Ground-truth
Under the 12-view configuration of the custom industrial dataset, the proposed method produces no obvious blurring or artifacts across diverse real-world industrial scenarios in experimental results, thereby meeting the requirements of digital twin applications
The proposed framework leverages the DUSt3R pose estimation model to acquire initial scene geometry from sparse views, whereas the SAM2 model provides structured representations for core reconstruction tasks. This synergistic integration delivers a streamlined and effective solution. Across all tested scenarios, the proposed approach achieves superior visual fidelity, with sharper details and enhanced geometric alignment.
Ablation studies
This subsection systematically validates the efficacy of each module through controlled ablation experiments, strictly adhering to the principle of independent variables. All experiments were conducted under identical hardware configurations (NVIDIA RTX 4090 GPU) on the custom industrial scene dataset, with the results averaged over five trials to ensure statistical reliability.
Sparse-view reconstruction module analysis
To comprehensively evaluate the multiview reconstruction module, rigorous comparative experiments were conducted on the industrial dataset. For the experimental group, the proposed DUSt3R-based framework was utilized, whereas for the control group, the traditional SfM pipeline COLMAP was employed. Reconstruction quality, computational efficiency, and resource consumption were systematically compared under 3/6/12-view configurations on unified hardware.
As shown in Table 3, the proposed method demonstrates significant advantages across all metrics. With 12 input views, DUSt3R achieves a 46.0% SSIM improvement (0.883 vs 0.605) and 81.6% LPIPS reduction (0.042 vs 0.228) over COLMAP, proving that transformer-based feature aggregation better preserves scene details and geometric consistency. Computational efficiency exhibits sublinear growth with increasing views when scaling from three to 12 views, with DUSt3R’s processing time increasing marginally compared to COLMAP’s quadratic complexity. This scalability stems from the hierarchical attention mechanism: local window attention extracts fine-grained features, whereas global cross-view attention establishes robust correspondences, avoiding the combinatorial explosion of feature matching in traditional SfM.
Regarding memory management, DUSt3R reduces peak GPU memory consumption by 42.9% (6.4 GB vs 11.2 GB) compared with COLMAP under the same view settings. The results confirm the superiority of the proposed method in factory scene reconstruction, attributable to the end-to-end differentiable architecture eliminating iterative SfM optimization, explicit geometric constraint modeling via cross-view attention, and redundant computation minimization.
Semantic-guidance hierarchical decoupling. To validate the core value of the SAM2 module, rigorous two-group controlled experiments were conducted on the custom dataset: (1) full method with SAM2 integration and (2) manual semantic segmentation baseline. Systematic evaluations were performed across three dimensions: semantic-geometric decoupling accuracy, interactive efficiency, and geometric preservation, using mean intersection over union as the primary segmentation metric.
As shown in Table 4, segmentation quality is comparable between manual annotation and SAM2-assisted approaches. The proposed method achieves substantial efficiency gains: manual annotation requires approximately \(8.9\times\) longer interaction time than SAM2-assisted labeling (18.7 vs 2.1 minute) due to polygon drawing overhead. Notably, the baseline method generates fragmented regions through post-annotation geometric clustering, whereas SAM2’s visual prompt mechanism produces more coherent instance-level masks, reducing the surface deformation error from 0.32 to 0.15 (Table 4).
The results demonstrate that the proposed framework effectively unifies semantic understanding with geometric decoupling through SAM2, thereby resolving the inherent semantic-geometric discrepancy in traditional methods. This integration provides structured representations for reconstruction tasks while enhancing robustness in occluded scenarios.
Parameter sensitivity analysis
To evaluate the robustness of the sparse-view initialization strategy, the impact of the confidence threshold (\(\tau\)) used during the point cloud generation phase was analyzed. This parameter filters the raw predictions from the DUSt3R model, determining the density and reliability of the initial 3D Gaussians. All experiments were conducted on the “factory 6views” scene from the custom dataset.
The model outputs a confidence map \(C \in [0, 1]\) for each pixel, indicating the reliability of the estimated 3D coordinates. The initial point cloud \(\mathcal{P}_{init} = \{p_i \mid C_i > \tau\}\) is filtered by varying \(\tau\) across \(\{0.2, 0.4, 0.5, 0.6, 0.8\}\). This threshold directly governs the trade-off between the completeness of scene coverage and precision of geometric initialization.
The impact of \(\tau\) was assessed considering two aspects: the quantity of initial points (initialization density) and final reconstruction quality (SSIM). As illustrated in Fig. 7, the results in Table 5 indicate the following:
Qualitative impact of the confidence threshold (\(\tau\)) on initialization quality. Lower thresholds (\(\tau=0.2\)) introduce excessive noise and floating artifacts, whereas higher thresholds (\(\tau=0.8\)) lead to significant structural loss and missing geometries. The selected threshold of \(\tau=0.5\) achieves the optimal balance, preserving structural completeness without including unreliable noise
Setting a lenient threshold (\(\tau < 0.3\)) preserves more points (approximately 120,000 points at \(\tau=0.2\)) but introduces significant outliers and floating noise from low-confidence regions (e.g., sky or textureless walls). This noisy initialization forces the 3DGS optimization to expend capacity on correcting geometry rather than refining details, leading to suboptimal SSIM scores.
An overly strict threshold (\(\tau > 0.7\)) discards valid geometric information, resulting in an overly sparse initialization (approximately 35,000 points at \(\tau=0.8\)). Although the remaining points are highly accurate, the lack of coverage in valid areas causes ‘holes’ that the Gaussian splitting process fails to fully recover within the limited iteration budget, degrading visual fidelity.
The method achieves peak performance at \(\tau = 0.5\). At this level, the initialization provides sufficient scene coverage while effectively filtering out unreliable predictions, thereby serving as an ideal starting point for high-fidelity Gaussian splatting.
Conclusions
A novel sparse-view 3D scene reconstruction framework is proposed to effectively address the challenges associated with data sparsity in 3D Gaussian splatting-based methods. By introducing DUSt3R-based initialization and semantically guided hierarchical decoupling, the proposed approach significantly enhances reconstruction accuracy and robustness in scenarios with limited input views. This methodology successfully strengthens geometric consistency, mitigates noise artifacts, and preserves fine-grained details. Experimental results across multiple benchmark datasets demonstrate consistent gains over 3DGS, CF-3DGS, and COLMAP-based baselines in SSIM and LPIPS (Tables 1, 2, and 3). The framework exhibits robust performance in various challenging environments, particularly in complex industrial scenarios characterized by metallic reflections and occlusions.
Future research will focus on temporally consistent dynamic scene reconstruction, leveraging inter-frame Gaussian parameter prediction, to extend sparse reconstruction to dynamic industrial processes, thereby enabling rapid reconstruction of time-evolving scenes. Dynamic 3D scene reconstruction will be further applied to digital twin systems for real-time equipment health monitoring and predictive maintenance.
Data availability
The datasets employed in this study are available from the corresponding authors upon reasonable request. In compliance with licensing requirements, the MipNeRF360 dataset is publicly accessible. Our custom industrial scene dataset was collected through on-site photography in industrial facilities.
Abbreviations
- 3D:
-
Three-dimensional
- 3DGS:
-
3D gaussian splatting
- CF-3DGS:
-
COLMAP-free 3D Gaussian splatting
- DUSt3R:
-
Dense and unconstrained stereo 3D reconstruction
- GPU:
-
Graphics processing unit
- LPIPS:
-
Learned perceptual image patch similarity
- mIoU:
-
Mean intersection over union
- MLP:
-
Multilayer perceptron
- NeRF:
-
Neural radiance field
- SAM:
-
Segment anything model
- SfM:
-
Structure from motion
- SSIM:
-
Structural similarity index measure
References
Yao JF, Yang Y, Wang XC, Zhang XP (2023) Systematic review of digital twin technology and applications. Vis Comput Ind Biomed Art 6(1):10. https://doi.org/10.1186/s42492-023-00137-4
Yu SP, Li X, Lei YG, Yang B, Li NP (2025) Dynamic vision-enabled intelligent micro-vibration estimation method with spatiotemporal pattern consistency. IEEE/CAA J Autom Sin 12(11):2359–2361. https://doi.org/10.1109/JAS.2024.125007
Sarmah M, Neelima A, Singh HR (2023) Survey of methods and principles in three-dimensional reconstruction from two-dimensional medical images. Vis Comput Ind Biomed Art 6(1):15. https://doi.org/10.1186/s42492-023-00142-7
Vu T, Wang YH, Xia J (2018) Optimizing photoacoustic image reconstruction using cross-platform parallel computation. Vis Comput Ind Biomed Art 1(1):2. https://doi.org/10.1186/s42492-018-0002-5
Liu CX, Kong DH, Wang SF, Wang ZY, Li JH, Yin BC (2021) Deep3D reconstruction: methods, data, and challenges. Front Inf Technol Electron Eng 22(5):652–672. https://doi.org/10.1631/FITEE.2000068
Li DR, Xiao XW, Guo BX, Jiang WS, Shi YR (2016) Oblique image based automatic aerotriangulation and its application in 3D city model reconstruction. Geomatics Inf Sci Wuhan Univ 41(6):711–721
Mildenhall B, Srinivasan PP, Tancik M, Barron JT, Ramamoorthi R, Ng R (2021) NeRF: representing scenes as neural radiance fields for view synthesis. Commun ACM 65(1):99–106. https://doi.org/10.1145/3503250
Barron JT, Mildenhall B, Tancik M, Hedman P, Martin-Brualla R, Srinivasan PP (2021) Mip-NeRF: a multiscale representation for anti-aliasing neural radiance fields. In: Proceedings of 2021 IEEE/CVF international conference on computer vision, IEEE, Montreal, 10–17 October 2021. https://doi.org/10.1109/ICCV48922.2021.00580
Chen AP, Xu ZX, Geiger A, Yu JY, Su H (2022) TensoRF: tensorial radiance fields. In: Avidan S, Brostow G, Cissé M, Farinella GM, Hassner T (eds) Computer Vision – ECCV 2022. 17th European conference, Tel Aviv, Israel, 23–27 October 2022. Lecture notes in computer science, vol 13692. Springer, Cham, pp 333–350. https://doi.org/10.1007/978-3-031-19824-3_20
Kerbl B, Kopanas G, Leimkühler T, Drettakis G (2023) 3D Gaussian splatting for real-time radiance field rendering. ACM Trans Graph 42(4):139. https://doi.org/10.1145/3592433
Luiten J, Kopanas G, Leibe B, Ramanan D (2024) Dynamic 3D Gaussians: tracking by persistent dynamic view synthesis. In: Proceedings of 2024 international conference on 3D vision, IEEE, Davos, 18–21 March 2024. https://doi.org/10.1109/3DV62453.2024.00044
Zhu ZH, Fan ZW, Jiang YF, Wang ZY (2024) FSGS: real-time few-shot view synthesis using Gaussian splatting. In: Leonardis A, Ricci E, Roth S, Russakovsky O, Sattler T, Varol G (eds) Computer vision – ECCV 2024. 18th European conference, Milan, Italy, 29 September–4 October 2024. Lecture notes in computer science, vol 15097. Springer, Cham, pp 145–163. https://doi.org/10.1007/978-3-031-72933-1_9
Zhang W, Hao HS, Zhang YW, Yang HX, Li X (2026) State of charge prediction for lithium-ion batteries in electric aircraft based on self-supervised informer. Appl Soft Comput 186:114283. https://doi.org/10.1016/j.asoc.2025.114283
Wang SZ, Leroy V, Cabon Y, Chidlovskii B, Revaud J (2024) DUSt3R: geometric 3D vision made easy. In: Proceedings of 2024 IEEE/CVF conference on computer vision and pattern recognition, IEEE, Seattle, 16–22 June 2024. https://doi.org/10.1109/CVPR52733.2024.01956
Zhang W, Jiang N, Yang SJ, Li X (2025) Federated transfer learning for remaining useful life prediction in prognostics with data privacy. Meas Sci Technol 36(7):076107. https://doi.org/10.1088/1361-6501/ade552
Guang RY, Li X, Lei YG, Yang B, Li NP (2025) Dynamic vision-based machine vibration sensing and fault diagnosis with signal alignment and feature clustering. Eng Appl Artif Intell 162:112445. https://doi.org/10.1016/j.engappai.2025.112445
Li X, Lin YX, Yang SJ, Zhang W (2025) Intelligent domain-generalized second-life EV battery state-of-health estimation. J Energy Storage 140:118989. https://doi.org/10.1016/j.est.2025.118989
Xu ZX, Wang AZ, Hou F, Zhao G (2024) Three-dimensional reconstruction of industrial parts from a single image. Vis Comput Ind Biomed Art 7(1):7. https://doi.org/10.1186/s42492-024-00158-7
Niemeyer M, Barron JT, Mildenhall B, Sajjadi MSM, Geiger A, Radwan N (2022) RegNeRF: regularizing neural radiance fields for view synthesis from sparse inputs. In: Proceedings of 2022 IEEE/CVF conference on computer vision and pattern recognition, IEEE, New Orleans, 18–24 June 2022. https://doi.org/10.1109/CVPR52688.2022.00540
Deng CY, Jiang CM, Qi CR, Yan XC, Zhou Y, Guibas L et al (2023) NeRDi: single-view NeRF synthesis with language-guided diffusion as general image priors. In: Proceedings of 2023 IEEE/CVF conference on computer vision and pattern recognition, IEEE, Vancouver, 17–24 June 2023. https://doi.org/10.1109/CVPR52729.2023.01977
Chen AP, Xu ZX, Zhao FQ, Zhang XS, Xiang FB, Yu JY et al (2021) MVSNeRF: fast generalizable radiance field reconstruction from multi-view stereo. In: Proceedings of 2021 IEEE/CVF international conference on computer vision, IEEE, Montreal, 10–17 October 2021. https://doi.org/10.1109/ICCV48922.2021.01386
Schwarz K, Sauer A, Niemeyer M, Liao YY, Geiger A (2022) VoxGRAF: fast 3D-aware image synthesis with sparse voxel grids. In: Proceedings of the 36th international conference on neural information processing systems, Curran Associates Inc., New Orleans, 28 November –9 December 2022. https://doi.org/10.52202/068431-2464
Sun C, Sun M, Chen HT (2022) Direct voxel grid optimization: super-fast convergence for radiance fields reconstruction. In: Proceedings of 2022 IEEE/CVF conference on computer vision and pattern recognition, IEEE, New Orleans, 18–24 June 2022. https://doi.org/10.1109/CVPR52688.2022.00538
Müller T, Evans A, Schied C, Keller A (2022) Instant neural graphics primitives with a multiresolution hash encoding. ACM Trans Graph 41(4):1–15. https://doi.org/10.1145/3528223.3530127
Tosi F, Zhang YM, Gong ZR, Sandström E, Mattoccia S, Oswald MR et al (2025) How NeRFs and 3D Gaussian splatting are reshaping SLAM: a survey. arXiv preprint arXiv:2402.13255
Zou J, Qin J (2024) Real-time volume rendering for three-dimensional fetal ultrasound using volumetric photon mapping. Vis Comput Ind Biomed Art 7(1):25. https://doi.org/10.1186/s42492-024-00177-4
Fan ZW, Cong WY, Wen KR, Wang K, Zhang J, Ding XH et al (2025) Instantsplat: unbounded sparse-view pose-free Gaussian splatting in 40 seconds. arXiv preprint arXiv:2403.20309v1
Li HL, Liu JY, Sznaier M, Camps O (2025) 3D-HGS: 3D half-gaussian splatting. In: Proceedings of 2025 IEEE/CVF conference on computer vision and pattern recognition, IEEE, Nashville, 10–17 June 2025. https://doi.org/10.1109/CVPR52734.2025.01027
Xu ZW, Rong Z, Wu YH (2021) A survey: Which features are required for dynamic visual simultaneous localization and mapping? Vis Comput Ind Biomed Art 4(1):20. https://doi.org/10.1186/s42492-021-00086-w
Wu MY, Dai HZ, Yao KX, Tuytelaars T, Yu JY (2025) BG-triangle: Bézier Gaussian triangle for 3D vectorization and rendering. In: Proceedings of 2025 IEEE/CVF conference on computer vision and pattern recognition, IEEE, Nashville, 10–17 June 2025
Yuan WW, Peng YJ, Guo YF, Ren YD, Xue QW (2022) DCAU-Net: dense convolutional attention U-Net for segmentation of intracranial aneurysm images. Vis Comput Ind Biomed Art 5(1):9. https://doi.org/10.1186/s42492-022-00105-4
Kirillov A, Mintun E, Ravi N, Mao HZ, Rolland C, Gustafson L et al (2023) Segment anything. In: Proceedings of 2023 IEEE/CVF international conference on computer vision, IEEE, Paris, 1–6 October 2023. https://doi.org/10.1109/ICCV51070.2023.00371
Ravi N, Gabeur V, Hu YT, Hu RH, Ryali C, Ma TY et al (2025) SAM 2: segment anything in images and videos. In: Proceedings of the 13th international conference on learning representations, OpenReview.net, Singapore, 24–28 April 2025
Zou XY, Yang JW, Zhang H, Li F, Li LJ, Wang JF et al (2023) Segment everything everywhere all at once. In: Proceedings of the 37th international conference on neural information processing systems, Curran Associates Inc., New Orleans, 10–16 December 2023. https://doi.org/10.52202/075280-0868
Wang XL, Zhang XS, Cao Y, Wang W, Shen CH, Huang TJ (2023) SegGPT: towards segmenting everything in context. In: Proceedings of 2023 IEEE/CVF international conference on computer vision, IEEE, Paris, 1–6 October 2023. https://doi.org/10.1109/ICCV51070.2023.00110
Lin TY, Maire M, Belongie S, Hays J, Perona P, Ramanan D et al (2014) Microsoft COCO: common objects in context. In: Fleet D, Pajdla T, Schiele B, Tuytelaars T (eds) Computer vision – ECCV 2014. 13th European conference, Zurich, Switzerland, 6–12 September 2014. Lecture notes in computer science, vol 8693. Springer, Cham, pp 740–755. https://doi.org/10.1007/978-3-319-10602-1_48
Fu Y, Wang S, Liu S, Kulkarni A, Kautz J, Efros AA et al (2024) COLMAP-free 3D Gaussian splatting. In: Proceedings of 2024 IEEE/CVF conference on computer vision and pattern recognition, IEEE, Seattle, 16–22 June 2024. https://doi.org/10.1109/CVPR52733.2024.01965
Plastria F (2011) The weiszfeld algorithm: proof, amendments, and extensions. In: Eiselt H, Marianov V (eds) Foundations of location analysis. International series in operations research & management science, vol 155. Springer, New York, pp 357–389. https://doi.org/10.1007/978-1-4419-7572-0_16
Barron JT, Mildenhall B, Verbin D, Srinivasan PP, Hedman P (2022) Mip-NeRF 360: unbounded anti-aliased neural radiance fields. In: Proceedings of 2022 IEEE/CVF conference on computer vision and pattern recognition, IEEE, New Orleans, 18–24 June 2022. https://doi.org/10.1109/CVPR52688.2022.00539
Wang Z, Bovik AC, Sheikh HR, Simoncelli E (2004) Image quality assessment: from error visibility to structural similarity. IEEE Trans Image Process 13(4):600–612. https://doi.org/10.1109/TIP.2003.819861
Zhang R, Isola P, Efros AA, Shechtman E, Wang O (2018) The unreasonable effectiveness of deep features as a perceptual metric. In: Proceedings of 2018 IEEE/CVF conference on computer vision and pattern recognition, IEEE, Salt Lake City, 18–23 June 2018. https://doi.org/10.1109/CVPR.2018.00068
Acknowledgements
We thank the reviewers for their valuable feedback which helped improve the manuscript. We also acknowledge the computational resources provided by Northeastern University.
Funding
This work was supported by the National Natural Science Foundation of China, No. 52130403.
Author information
Authors and Affiliations
Contributions
BL contributed to conceptualization, methodology, software, validation, formal analysis, investigation, data curation, writing – original draft, writing – review and editing, visualization; TG contributed to conceptualization, supervision, project administration, funding acquisition, writing – review and editing; ZG contributed to conceptualization, supervision, writing – review and editing; HL contributed to conceptualization, supervision, writing – review and editing.
Corresponding author
Ethics declarations
Competing interests
The authors declare that they have no competing interests.
Additional information
Publisher’s Note
Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
Rights and permissions
Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made. The images or other third party material in this article are included in the article’s Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article’s Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this licence, visit http://creativecommons.org/licenses/by/4.0/.
About this article
Cite this article
Li, B., Gao, T., Gu, Z. et al. Semantic-guided 3D Gaussian splatting for sparse-view reconstruction in industrial digital twins. Vis. Comput. Ind. Biomed. Art 9, 17 (2026). https://doi.org/10.1186/s42492-026-00229-x
Received:
Accepted:
Published:
Version of record:
DOI: https://doi.org/10.1186/s42492-026-00229-x






