ScrewSplat: Articulated Object Recognition
- ScrewSplat is an end-to-end method for articulated object recognition that uses multi-view RGB images to recover part-aware 3D geometry and joint parameters.
- It unifies kinematic screw modeling with 3D Gaussian splatting to estimate joint types, axes, angles, and part segmentation without category priors or depth data.
- The approach optimizes all variables in a single differentiable rendering framework, enabling accurate, real-time reconstruction and manipulation of complex articulated objects.
Searching arXiv for the named paper and closely related 3DGS/articulated-object work to ground the article. ScrewSplat is an end-to-end method for articulated object recognition from RGB-only observations that unifies kinematic screw modeling with 3D Gaussian Splatting in a single end-to-end optimization. From multi-view images across multiple articulation states, it recovers the object’s part-aware 3D geometry, the number and types of joints, the joint screw axes and positions, per-configuration joint angles, and part segmentation, without category priors, depth, pre-known joint counts, or multi-stage correspondence/clustering pipelines. The method assumes that all movable parts articulate with respect to a single static base and that multi-view RGB images are available for multiple configurations; camera intrinsics and extrinsics are assumed known during reconstruction (Kim et al., 4 Aug 2025).
1. Problem setting and representational scope
The inputs are multi-view RGB images from camera poses and configurations of an unknown articulated object. For real-world data, images are masked with a pretrained segmenter, SAM. No depth is used. The outputs are a part-aware Gaussian scene representation for geometry and appearance; the set of active joints with types, screw axes , and per-configuration joint angles ; part segmentation as soft assignments of Gaussians to parts and a static base; and optional joint limits inferred post hoc as elementwise min–max of optimized (Kim et al., 4 Aug 2025).
Two assumptions define the main scope. First, all movable parts articulate with respect to a single static base; no kinematic chains are modeled in the main method. Second, the method operates on multi-view RGB observations across multiple articulation states. Within that scope, ScrewSplat explicitly avoids several common constraints: the number of parts and joints is unknown a priori; there are no category priors; there is no depth input; and there is no dependence on point correspondences or discrete pre-segmentation.
A plausible implication is that the method is positioned against articulated-object pipelines in which geometry reconstruction, correspondence estimation, part clustering, and joint fitting are separate stages. ScrewSplat instead treats part discovery and kinematic estimation as latent variables inside a single differentiable rendering objective.
2. Kinematic model: screw axes, joint types, and rigid motion
ScrewSplat uses screw theory as the motion parameterization. A screw axis is written as , with two special cases. For a revolute joint, the motion is pure rotation about a unit axis 0 with zero pitch 1, so 2 and 3, where 4 is any point on the axis. For a prismatic joint, the motion is pure translation along the axis, so 5 and 6 (Kim et al., 4 Aug 2025).
Let 7 be the 8 skew-symmetric matrix of 9,
0
The associated 1 twist matrix is
2
For a joint displacement 3, the induced rigid transform is
4
For revolute motion,
5
with
6
and
7
For prismatic motion, where 8,
9
Although the main formulation attaches each movable part directly to the static base, the method notes an extension to kinematic chains through the product of exponentials formulation,
0
where 1 is the part’s home pose. This suggests a natural path toward chain-structured articulated objects, but that extension is not the main operating regime.
3. Part-aware 3D Gaussian Splatting
The scene is represented by anisotropic 3D Gaussian primitives. Each Gaussian 2 has parameters 3, where 4 is the pose, 5 are scales, 6 is the covariance, 7 is opacity, and 8 denotes color through spherical harmonics coefficients. The per-Gaussian opacity field is
9
Pixels are rendered by alpha compositing ordered Gaussians along the view ray,
0
The rendering loss is
1
with 2 (Kim et al., 4 Aug 2025).
ScrewSplat augments this representation with screw primitives and part probabilities. A screw primitive is
3
where 4 is a screw axis and 5 is its confidence. A part-aware Gaussian is
6
with 7 a probability simplex over 8 parts,
9
Here 0 is the probability of belonging to the static base, and 1 for 2 is the probability of belonging to the part moved by 3.
For each part-aware Gaussian 4, the method replicates 5 standard Gaussians 6, one for the static base and one per screw primitive. For configuration 7:
- Base replica:
8
- Movable-part replica:
9
0
This construction yields soft, probabilistic per-Gaussian part assignment via 1; continuous kinematic parameterization through screw axes 2 and angles 3; and joint-type discovery by spawning both revolute and prismatic screws and pruning unused types. Geometry 4 and appearance 5 are shared across replicas, while opacity is scaled by the soft part probability and further modulated by the screw confidence for movable parts.
4. Objective, initialization, and optimization dynamics
The unified objective is
6
The 7 regularizer is a parsimony term that encourages using as few, confident screws as necessary. The reported settings are 8 in simulation and 9 in real-world experiments (Kim et al., 4 Aug 2025).
Initialization is deliberately overcomplete. The method initializes 0 part-aware Gaussians as in standard 3D Gaussian Splatting, with positions sampled uniformly in a workspace volume within the camera frustum. Part probabilities are initialized uniformly over the simplex. It also spawns 1 screw candidates: eight revolute and eight prismatic. For sampled 2 from 3,
- revolute screws use 4 and 5;
- prismatic screws use 6 and 7. All 8 are initialized to 9, and all joint angles are initialized to 0.
Optimization is by gradient descent on all variables. The reported learning rates are: geometry and appearance as in 3DGS; part probabilities 1 with learning rate 2 on logits before softmax; screw axes 3 with learning rate 4 on raw parameters before re-normalizing to satisfy revolute or prismatic constraints; screw confidences 5 with learning rate 6 on logits before sigmoid; and joint angles 7 with learning rate 8.
To escape local minima and stabilize discovery, the method periodically resets all 9 and all 0 uniform. This reset period is asynchronous with the standard 3DGS opacity reset, and synchronizing the two was found detrimental. It also canonicalizes joint angles and Gaussian poses by selecting a random 1 from 2, setting 3 for all 4, and updating each 5 by unwinding the dominant part 6:
7
Model selection occurs through pruning. A screw is removed if 8. It is also removed as a zero-motion screw if
9
with 00 for revolute joints and 01 for prismatic joints. After pruning, remaining variables are fine-tuned. During rendering and backpropagation, only screws with 02 are considered to reduce computation.
A plausible implication is that ScrewSplat converts unknown joint count and unknown joint type into an optimization-overparameterization problem, then resolves it through photometric consistency plus parsimony rather than through discrete structure search.
5. Segmentation, articulation recovery, and manipulation interfaces
Segmentation is induced by the per-Gaussian simplex variable 03. During training, each Gaussian softly participates in exactly one of 04 parts, and rigidity is enforced implicitly because each replicated movable Gaussian 05 moves rigidly with its single screw 06 through 07. Articulation consistency is enforced by a single 08 per screw across all images in configuration 09 and by one screw 10 per part; no explicit pairwise consistency or correspondence loss is used (Kim et al., 4 Aug 2025).
After optimization, a hard segmentation can be obtained by taking the 11 over 12. Joint types and counts are those that remain after pruning. Joint limits are estimated as elementwise min/max of the optimized 13. The learned part-aware Gaussian model can be meshed by depth rendering, TSDF fusion, and marching cubes.
ScrewSplat also functions as a differentiable renderer for downstream articulation inference. Given new RGB views, current-state estimation minimizes
14
with respect to 15, using Bayesian optimization.
For zero-shot, text-guided manipulation, the method defines a renderer 16 mapping target joint angles 17 to an image 18. A CLIP-based directional loss aligns image-embedding change with text-embedding change:
19
20
21
The optimization target is
22
solved by Bayesian optimization through gp_minimize with Expected Improvement, 50 total evaluations, and 10 random initial samples. The search domain is the recognized joint limits inferred from the optimized training configurations.
Robot execution is described at the level of affordance and trajectory construction: choose an affordance point from the recognized movable part, such as Gaussian centers farthest from the revolute axis or nearest along the prismatic axis; move this point from 23 to 24 along the screw motion; lift the motion to an 25 gripper trajectory with fixed orientation; and solve IK for robot joint trajectories. This suggests that the representation is designed not only for recognition, but also for direct operational use in manipulation stacks.
6. Empirical performance, ablations, and limitations
The evaluation uses ten single-joint and three multi-joint objects from PartNet-Mobility. There are 48 cameras on a hemisphere, and ScrewSplat uses five configurations per object; baselines PARIS, PARIS* (depth), and DTA (RGB-D) use two configurations. Geometry is evaluated by bidirectional Chamfer-L2 distance in millimeters for static parts, movable parts, and the whole object. Motion is evaluated by axis angular error in degrees and axis position error for revolute joints. Appearance is evaluated by PSNR and SSIM on novel joint angles midway between training states. For multi-joint evaluation, bipartite matching between predicted and ground-truth axes minimizes total angular and position error (Kim et al., 4 Aug 2025).
On single-joint objects, the reported averages are:
- PARIS: CD-s 54.015, CD-m 18.032, CD-w 40.192, Ang 17.656, Pos 2.020, PSNR 28.64, SSIM 0.970.
- PARIS*: CD-s 49.706, CD-m 8.864, CD-w 33.856, Ang 16.287, Pos 1.742, PSNR 28.66, SSIM 0.970.
- DTA (RGB-D): CD-s 0.538, CD-m 0.528, CD-w 0.360, Ang 0.437, Pos 0.308.
- ScrewSpawn: CD-s 0.617, CD-m 11.566, CD-w 0.946, Ang 24.869, Pos 0.902, PSNR 29.11, SSIM 0.982.
- ScrewSplat (RGB-only): CD-s 0.319, CD-m 0.211, CD-w 0.261, Ang 0.084, Pos 0.010, PSNR 38.07, SSIM 0.993.
On multi-joint objects, the reported averages are:
- DTA (RGB-D): CD-s 0.568, CD-mm 5.647, CD-w 0.476, Angm 7.233, Posm 28.877.
- ScrewSplat: CD-s 0.675, CD-mm 0.096, CD-w 0.666, Angm 0.130, Posm 0.002, PSNR 36.76, SSIM 0.987.
The ablation study identifies the importance of the multi-screw formulation. ScrewSpawn, which spawns a single known screw, is insufficient to recover geometry and kinematics broadly. A two-configuration ablation shows competitive results for several objects, but failures on some cases, including stapler and USB, indicate that more articulation diversity and improved optimization help.
The practical profile is comparatively lightweight: approximately 7–9 minutes for 30,000 iterations on an RTX 4090, about 30 MB per object model, and peak GPU memory of about 2.8 GB. Real-world experiments use 16 feasible robot-mounted views. However, the method has several explicit limitations. It is sensitive to the parsimony weight 26: too low produces redundant or collapsed multiple screws per part, while too high misses articulation and explains everything as static. It assumes all movable parts articulate with respect to a static base rather than through chains. Shadows cast by moving parts can introduce view- and configuration-dependent appearance changes, and without explicit illumination modeling the method may spawn extra Gaussians to explain lighting. Camera poses are assumed known rather than estimated.
These results support the abstract claim that ScrewSplat achieves state-of-the-art recognition accuracy across a diverse set of articulated objects while operating solely on RGB observations. More specifically, the reported numbers indicate that its largest empirical advantage lies in movable-part geometry and kinematic accuracy, while the product-of-exponentials extension and illumination-aware modeling remain open directions for broader articulated-scene generalization.