REVIEW 4 major objections 5 minor 34 references
ChronoGS reconstructs every period of a scene — buildings, seasons, lighting — in one unified Gaussian scaffold, claiming a single jointly trained model faithfully renders each discrete period and beats static and dynamic baselines.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
A single shared Gaussian scaffold with per-period features and opacity gating reconstructs multi-period scenes better than static and dynamic baselines on a new 12-scene benchmark.
T0 review reviewed 2026-08-03 challenge →
load-bearing objection A well-built system for multi-period scene reconstruction with a new public benchmark; the synthetic results are convincing and the real-scene numbers rest on an alignment assumption the paper never quantifies. the 4 major comments →
ChronoGS: Disentangling Invariants and Changes in Multi-Period Scenes
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
Core claim
The paper establishes a representation designed for scenes that are discrete in time but shared in major structure. ChronoGS builds an anchor scaffold from the union of all periods' sparse point clouds, then, for a given time t, modulates each anchor's features with a temporal encoding: a one-hot vector at observed periods, linearly interpolated between them for intermediate timestamps. A lightweight decoder predicts Gaussian shape, opacity, and color from the modulated features, while the spatial offsets of the Gaussians around each anchor are fixed and period-invariant. Geometry change is therefore expressed through visibility: Gaussians whose decoded opacity falls below zero are excluded
What carries the argument
The anchor scaffold of union geometry: a set of learnable spatial anchors, initialized from the merged sparse point clouds of all periods, each of which emits a small cluster of Gaussians. The load-bearing design choice is that each anchor's Gaussian center offsets are period-invariant, so temporal geometry changes are carried by an opacity gating mechanism that switches Gaussians on or off per period, while appearance changes are carried by a base feature plus local and global period-varying features decoded through a lightweight MLP.
Load-bearing premise
The load-bearing premise is that the per-period sparse point clouds are accurately registered into a shared coordinate frame before training; if cross-period alignment is off, the unified scaffold inherits the error, and since Gaussian center offsets are period-invariant and geometry change is expressed only through opacity gating, the model has no mechanism to correct displaced anchors.
What would settle it
Take one of the synthetic ChronoScene scenes, apply a known rigid perturbation (for example, 0.1–0.5 meters) to one period's sparse point cloud before scaffold initialization, retrain ChronoGS, and measure that period's held-out image quality against the aligned model. A sharp drop would confirm that registration accuracy is the load-bearing assumption; little or no drop would show the scaffold absorbs minor misalignment through the learned features.
If this is right
- On all 12 ChronoScene scenes, ChronoGS reports the best PSNR, SSIM, and LPIPS — e.g., 25.15 dB vs 22.71 dB for the strongest baseline on Canteen, and 28.80 dB average on synthetic scenes vs 22.29 dB for the best baseline.
- Joint training across periods in one scaffold outperforms per-period static training on the Overstreet scene (22.66 vs 22.23 and 21.87 dB) while using about a third of the storage and a third of the training iterations.
- The linearly interpolated time encoding allows rendering at intermediate timestamps between observed periods, so the reconstructed model can synthesize plausible transitional states rather than only the discrete training periods.
- Stable regions receive denser supervision from all periods, acting as an implicit regularizer that reduces temporal averaging, ghosting, and overfitting to single-period noise.
- Ablations show each component — base feature, local period-varying feature, and global period-varying feature — is needed; removing any one degrades reconstruction, supporting the claimed disentanglement.
Where Pith is reading between the lines
- If the registration assumption holds, the same architecture is a natural fit for unregistered or crowdsourced multi-period collections: replace the human-in-the-loop alignment with automatic registration, and the method itself needs no positional correction since it never moves Gaussian centers across periods.
- The binary on/off visibility mechanism suggests a testable boundary: a structure that first appears midway between two observed periods may not emerge correctly, since the interpolated feature must independently produce nonzero opacity; an experiment with unevenly spaced periods would reveal whether temporal extrapolation is possible.
- The explicit split between invariant base features and period-varying features points toward an editing interface: changing the global period feature could relight a whole period, and clamping local features could freeze a structure, without retraining the scaffold.
- The scaffold's growth and pruning rules operate online during training, which hints at a continual-learning extension — appending a new period's captures to an already-trained model rather than retraining from all periods jointly — though the paper does not claim this.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes ChronoGS, a Gaussian-splatting-based representation for reconstructing multi-period scenes, where geometry and appearance change discontinuously across discrete time periods. The method builds a unified anchor scaffold initialized from merged per-period sparse point clouds, combines period-invariant base features with local and global period-varying features, and introduces a temporal geometry gating mechanism based on predicted opacity to activate or deactivate Gaussians per period. The authors also introduce ChronoScene, a benchmark of 12 real and synthetic scenes totaling 8,891 images across 42 sub-scenes. Experiments compare against static, in-the-wild, and dynamic baselines on per-period novel-view synthesis, reporting consistent improvements across all scenes, and include ablations of the main components as well as a per-period comparison against independently trained static models.
Significance. If the results hold, ChronoGS is a simple and effective baseline for long-term scene reconstruction with discrete changes, and the ChronoScene dataset is a useful public benchmark. The paper's strengths include a thorough evaluation with large margins over baselines on 12 scenes, a per-period comparison with static training (Table 2), ablations supporting the design choices, and the release of code and data. The main risks are the unverified cross-period registration accuracy on real scenes, a dimensionally inconsistent core equation, and a hard gating mechanism that may prevent recovery of incorrectly deactivated geometry; each is central to the method's claimed behavior and should be addressed before the results can be fully accepted.
major comments (4)
- [Section 3.1, Eq. (2)] The feature fusion equation is dimensionally inconsistent. e(t) is a T-dimensional vector, while g(t) is T×d_g, f_var_i(t) is T×d_v, and f_base_i is d_b, with d_g=32, d_v=16, d_b=16 (Sec. 4.1). The expression g(t)⊙e(t) + f_var_i(t)⊙e(t) + f_base_i cannot be evaluated as written because the terms have different shapes and ⊙ between a matrix and a vector is not defined. The text and Fig. 2 mention concatenation, but Eq. (2) uses addition. Please clarify the actual tensor shapes and the intended operation; this defines the MLP input and is load-bearing for the method's forward pass.
- [Section 3.2 and Supp. §6.3] The negative-opacity gating excludes Gaussians with α<0 from both compositing and gradient backpropagation. This is a hard mask: once a primitive's opacity becomes negative for a period, it never receives gradient to become positive again, so the model cannot recover a wrongly deactivated region. Since the opacity MLP uses tanh, negative outputs are possible. The paper does not explain how the model avoids permanent dead anchors, nor does it report statistics on inactive anchors during training. Please justify the mechanism (or provide a soft-gating alternative) and report its behavior during optimization.
- [Section 4.2 and Section 3.2] The real-scene results in Table 1 depend on cross-period alignment performed with GPS priors and human-in-the-loop refinement, but no alignment-error statistics or verification are reported. Because anchor positions remain fixed (Supp. §6.4) and Gaussian center offsets are period-invariant, any misregistration directly corrupts the union-geometry scaffold. Please report quantitative alignment residuals (e.g., reprojection errors or manual correspondence counts) and/or perform a sensitivity analysis by perturbing the alignment to demonstrate the method's tolerance to registration error.
- [Abstract and Conclusion] The paper claims 'temporally consistent reconstruction' as a central contribution, but no quantitative temporal consistency metric is reported. The evaluations are per-period reconstruction metrics; the only temporal evidence is qualitative (Fig. 7). If temporal consistency is claimed, please include a measure such as consistency of rendered stable regions across periods or a temporal LPIPS/FID. Otherwise, temper the claim or define consistency operationally.
minor comments (5)
- [Section 4.4] Typo: 'geometry and appearence changes ascorss periods' should be 'geometry and appearance changes across periods'.
- [Figure 8 caption] The caption reads 'Ground Trurh'; should be 'Ground Truth'.
- [Supplementary Table 5] The heading refers to 'the global feature f_var_i(t)', but f_var_i(t) is the local period-varying feature. Please correct the terminology.
- [Section 4.2] The 'human-in-the-loop refinement' procedure is not described concretely. Please specify the number of manual correspondences, the type of edits, and how consistency was checked across periods.
- [Figure 7 / Section 4.4] The intermediate-state synthesis is evaluated only qualitatively. A quantitative evaluation against a held-out intermediate frame (if available) would strengthen this exploratory claim.
Circularity Check
No significant circularity: the headline result is a held-out-view photometric comparison against external baselines; no prediction reduces by construction to a fitted input or self-citation.
full rationale
The paper's central quantitative claim is that ChronoGS outperforms existing Gaussian-based methods on the ChronoScene benchmark (Table 1). This is not circular: the evaluation protocol renders held-out test cameras within each period and computes PSNR/SSIM/LPIPS against ground-truth images, using the same train/test splits for all methods (§4.3). The photometric objective (Eq. 5) and the rendering equation (Eq. 4) are standard, and the method's per-period outputs are not defined in terms of the reported metrics. The anchor scaffold is initialized from per-period COLMAP sparse point clouds (§3.2, Supp. §6.2), but this is an architectural input, not the evaluation target; the method must still generalize to unseen views. Temporal modulation (§3.1) uses period identifiers and learnable features with a photometric loss, so no fitted parameter is renamed as a prediction. The benchmark is authored by the same team, and real-scene cross-period registration relies on GPS priors plus human-in-the-loop refinement with no reported alignment-error statistics (§4.2); this is a validation/robustness limitation, not a circular reduction, because the method's equations do not force the reported scores. Similarly, the hyperparameter ablations in Supp. Tables 4-7 are performed on scenes that also appear in the main benchmark, which is an evaluation-leakage concern, but selecting d_b/d_v/d_g does not by construction determine PSNR. The only self-citation is [23] (HuG) in the related-work survey of scalable Gaussian variants; it is not load-bearing for any derivation. No step in the claimed derivation chain reduces to its own inputs or to an unverified self-citation, so the circularity score is 0.
Axiom & Free-Parameter Ledger
free parameters (4)
- Feature dimensions (d_b, d_v, d_g) =
16, 16, 32
- Gaussians per anchor K =
10
- Anchor growth threshold τ_g =
0.0002
- Training iterations =
40,000 per run
axioms (5)
- domain assumption Multi-period scenes factorize: the majority of spatial content is invariant across periods and changes are independent, allowing a shared canonical geometry plus period-specific variations
- domain assumption All periods' sparse point clouds can be registered into a common world coordinate frame accurately enough for a single union scaffold
- domain assumption Geometric change between periods is expressible by appearance/disappearance alone: anchor positions and Gaussian offsets are period-invariant, and period-specific geometry is realized by gating opacity
- standard math Scaffold-GS anchor parameterization and 3DGS alpha compositing (Eq. 4) are valid and inherited
- ad hoc to paper Linearly interpolating one-hot period codes yields plausible intermediate states
invented entities (4)
-
Anchor scaffold of union geometry
no independent evidence
-
Local period-varying feature pool f_var_i(t)
no independent evidence
-
Global period-varying feature g(t)
no independent evidence
-
Negative-opacity geometry activation (temporal geometry gating)
no independent evidence
Cite this review
Pith. "Pith review of ChronoGS: Disentangling Invariants and Changes in Multi-Period Scenes." pith.science (2026). https://pith.science/paper/QHX7DSDN
@misc{pith2026251118794,
author = {Pith},
title = {Pith review of: ChronoGS: Disentangling Invariants and Changes in Multi-Period Scenes},
year = {2026},
howpublished = {\url{https://pith.science/paper/QHX7DSDN}},
note = {Machine review of arXiv:2511.18794}
}
read the original abstract
Multi-period image collections are common in real-world applications. Cities are re-scanned for mapping, construction sites are revisited for progress tracking, and natural regions are monitored for environmental change. Such data form multi-period scenes, where geometry and appearance evolve. Reconstructing such scenes is an important yet underexplored problem. Existing pipelines rely on incompatible assumptions: static and in-the-wild methods enforce a single geometry, while dynamic ones assume smooth motion, both failing under long-term, discontinuous changes. To solve this problem, we introduce ChronoGS, a temporally modulated Gaussian representation that reconstructs all periods within a unified anchor scaffold. It's also designed to disentangle stable and evolving components, achieving temporally consistent reconstruction of multi-period scenes. To catalyze relevant research, we release ChronoScene dataset, a benchmark of real and synthetic multi-period scenes, capturing geometric and appearance variation. Experiments demonstrate that ChronoGS consistently outperforms baselines in reconstruction quality and temporal consistency. Our code and the ChronoScene dataset are publicly available at https://github.com/ZhongtaoWang/ChronoGS.
Figures
Reference graph
Works this paper leans on
-
[1]
Mip-nerf 360: Unbounded anti-aliased neural radiance fields
Jonathan T Barron, Ben Mildenhall, Dor Verbin, Pratul P Srinivasan, and Peter Hedman. Mip-nerf 360: Unbounded anti-aliased neural radiance fields. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 5470–5479, 2022. 2
2022
-
[2]
Pgsr: Planar-based gaussian splatting for ef- ficient and high-fidelity surface reconstruction.IEEE Trans- actions on Visualization and Computer Graphics, 2024
Danpeng Chen, Hai Li, Weicai Ye, Yifan Wang, Weijian Xie, Shangjin Zhai, Nan Wang, Haomin Liu, Hujun Bao, and Guofeng Zhang. Pgsr: Planar-based gaussian splatting for ef- ficient and high-fidelity surface reconstruction.IEEE Trans- actions on Visualization and Computer Graphics, 2024. 2
2024
-
[3]
4d-rotor gaussian splatting: towards efficient novel view synthesis for dynamic scenes
Yuanxing Duan, Fangyin Wei, Qiyu Dai, Yuhang He, Wen- zheng Chen, and Baoquan Chen. 4d-rotor gaussian splatting: towards efficient novel view synthesis for dynamic scenes. InACM SIGGRAPH 2024 Conference Papers, pages 1–11,
2024
-
[4]
Plenoxels: Radiance fields without neural networks
Sara Fridovich-Keil, Alex Yu, Matthew Tancik, Qinhong Chen, Benjamin Recht, and Angjoo Kanazawa. Plenoxels: Radiance fields without neural networks. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 5501–5510, 2022. 2
2022
-
[5]
K-planes: Explicit radiance fields in space, time, and appearance
Sara Fridovich-Keil, Giacomo Meanti, Frederik Rahbæk Warburg, Benjamin Recht, and Angjoo Kanazawa. K-planes: Explicit radiance fields in space, time, and appearance. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 12479–12488, 2023. 3
2023
-
[6]
2d gaussian splatting for geometrically ac- curate radiance fields
Binbin Huang, Zehao Yu, Anpei Chen, Andreas Geiger, and Shenghua Gao. 2d gaussian splatting for geometrically ac- curate radiance fields. InACM SIGGRAPH 2024 conference papers, pages 1–11, 2024. 2
2024
-
[7]
3d gaussian splatting for real-time radiance field rendering.ACM Trans
Bernhard Kerbl, Georgios Kopanas, Thomas Leimk ¨uhler, and George Drettakis. 3d gaussian splatting for real-time radiance field rendering.ACM Trans. Graph., 42(4):139–1,
-
[8]
A hierarchical 3d gaussian representation for real-time ren- dering of very large datasets.ACM Transactions on Graphics (TOG), 43(4):1–15, 2024
Bernhard Kerbl, Andreas Meuleman, Georgios Kopanas, Michael Wimmer, Alexandre Lanvin, and George Drettakis. A hierarchical 3d gaussian representation for real-time ren- dering of very large datasets.ACM Transactions on Graphics (TOG), 43(4):1–15, 2024. 2
2024
-
[9]
Wildgaussians: 3d gaussian splatting in the wild.arXiv preprint arXiv:2407.08447, 2024
Jonas Kulhanek, Songyou Peng, Zuzana Kukelova, Marc Pollefeys, and Torsten Sattler. Wildgaussians: 3d gaussian splatting in the wild.arXiv preprint arXiv:2407.08447, 2024. 3
Pith/arXiv arXiv 2024
-
[10]
Nerf-ms: Neural radiance fields with multi-sequence
Peihao Li, Shaohui Wang, Chen Yang, Bingbing Liu, We- ichao Qiu, and Haoqian Wang. Nerf-ms: Neural radiance fields with multi-sequence. InProceedings of the IEEE/CVF International Conference on Computer Vision, pages 18591– 18600, 2023. 3
2023
-
[11]
Matrixcity: A large-scale city dataset for city-scale neural rendering and beyond
Yixuan Li, Lihan Jiang, Linning Xu, Yuanbo Xiangli, Zhen- zhi Wang, Dahua Lin, and Bo Dai. Matrixcity: A large-scale city dataset for city-scale neural rendering and beyond. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 3205–3215, 2023. 6
2023
-
[12]
Neural scene chronology
Haotong Lin, Qianqian Wang, Ruojin Cai, Sida Peng, Hadar Averbuch-Elor, Xiaowei Zhou, and Noah Snavely. Neural scene chronology. InProceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 20752–20761, 2023. 3
2023
-
[13]
Vastgaussian: Vast 3d gaussians for large scene reconstruction
Jiaqi Lin, Zhihao Li, Xiao Tang, Jianzhuang Liu, Shiyong Liu, Jiayue Liu, Yangdi Lu, Xiaofei Wu, Songcen Xu, You- liang Yan, et al. Vastgaussian: Vast 3d gaussians for large scene reconstruction. InProceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 5166–5175, 2024. 3
2024
-
[14]
Scaffold-gs: Structured 3d gaussians for view-adaptive rendering
Tao Lu, Mulin Yu, Linning Xu, Yuanbo Xiangli, Limin Wang, Dahua Lin, and Bo Dai. Scaffold-gs: Structured 3d gaussians for view-adaptive rendering. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 20654–20664, 2024. 2, 3, 5, 6, 8, 1
2024
-
[15]
Dynamic 3d gaussians: Tracking by per- sistent dynamic view synthesis
Jonathon Luiten, Georgios Kopanas, Bastian Leibe, and Deva Ramanan. Dynamic 3d gaussians: Tracking by per- sistent dynamic view synthesis. In2024 International Con- ference on 3D Vision (3DV), pages 800–809. IEEE, 2024. 3
2024
-
[16]
Nerf in the wild: Neural radiance fields for uncon- strained photo collections
Ricardo Martin-Brualla, Noha Radwan, Mehdi SM Sajjadi, Jonathan T Barron, Alexey Dosovitskiy, and Daniel Duck- worth. Nerf in the wild: Neural radiance fields for uncon- strained photo collections. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 7210–7219, 2021. 3
2021
-
[17]
Nerf: Representing scenes as neural radiance fields for view syn- thesis.Communications of the ACM, 65(1):99–106, 2021
Ben Mildenhall, Pratul P Srinivasan, Matthew Tancik, Jonathan T Barron, Ravi Ramamoorthi, and Ren Ng. Nerf: Representing scenes as neural radiance fields for view syn- thesis.Communications of the ACM, 65(1):99–106, 2021. 2
2021
-
[18]
Instant neural graphics primitives with a mul- tiresolution hash encoding.ACM transactions on graphics (TOG), 41(4):1–15, 2022
Thomas M ¨uller, Alex Evans, Christoph Schied, and Alexan- der Keller. Instant neural graphics primitives with a mul- tiresolution hash encoding.ACM transactions on graphics (TOG), 41(4):1–15, 2022. 2
2022
-
[19]
D-nerf: Neural radiance fields for dynamic scenes
Albert Pumarola, Enric Corona, Gerard Pons-Moll, and Francesc Moreno-Noguer. D-nerf: Neural radiance fields for dynamic scenes. InProceedings of the IEEE/CVF con- ference on computer vision and pattern recognition, pages 10318–10327, 2021. 2
2021
-
[20]
Merf: Memory-efficient radiance fields for real- time view synthesis in unbounded scenes.ACM Transactions on Graphics (ToG), 42(4):1–12, 2023
Christian Reiser, Rick Szeliski, Dor Verbin, Pratul Srini- vasan, Ben Mildenhall, Andreas Geiger, Jon Barron, and Pe- ter Hedman. Merf: Memory-efficient radiance fields for real- time view synthesis in unbounded scenes.ACM Transactions on Graphics (ToG), 42(4):1–12, 2023. 2
2023
-
[21]
Kerui Ren, Lihan Jiang, Tao Lu, Mulin Yu, Linning Xu, Zhangkai Ni, and Bo Dai. Octree-gs: Towards consistent real-time rendering with lod-structured 3d gaussians.arXiv preprint arXiv:2403.17898, 2024. 2
Pith/arXiv arXiv 2024
-
[22]
Structure-from-motion revisited
Johannes Lutz Sch ¨onberger and Jan-Michael Frahm. Structure-from-motion revisited. InConference on Com- puter Vision and Pattern Recognition (CVPR), 2016. 6, 1 9
2016
-
[23]
Hug: Hierarchical urban gaussian splatting with block-based re- construction for large-scale aerial scenes
Mai Su, Zhongtao Wang, Huishan Au, Yilong Li, Xizhe Cao, Chengwei Pan, Yisong Chen, and Guoping Wang. Hug: Hierarchical urban gaussian splatting with block-based re- construction for large-scale aerial scenes. InProceedings of the IEEE/CVF International Conference on Computer Vi- sion, pages 28839–28848, 2025. 2
2025
-
[24]
Nerfstudio: A modular framework for neural radiance field development
Matthew Tancik, Ethan Weber, Evonne Ng, Ruilong Li, Brent Yi, Terrance Wang, Alexander Kristoffersen, Jake Austin, Kamyar Salahi, Abhik Ahuja, et al. Nerfstudio: A modular framework for neural radiance field development. InACM SIGGRAPH 2023 conference proceedings, pages 1– 12, 2023. 2
2023
-
[25]
Yuze Wang, Junyi Wang, and Yue Qi. We-gs: An in-the-wild efficient 3d gaussian representation for unconstrained photo collections.arXiv preprint arXiv:2406.02407, 2024. 3
Pith/arXiv arXiv 2024
-
[26]
4d gaussian splatting for real-time dynamic scene rendering
Guanjun Wu, Taoran Yi, Jiemin Fang, Lingxi Xie, Xiaopeng Zhang, Wei Wei, Wenyu Liu, Qi Tian, and Xinggang Wang. 4d gaussian splatting for real-time dynamic scene rendering. InProceedings of the IEEE/CVF conference on computer vi- sion and pattern recognition, pages 20310–20320, 2024. 3, 6
2024
-
[27]
Wild-gs: Real- time novel view synthesis from unconstrained photo collec- tions.Advances in Neural Information Processing Systems, 37:103334–103355, 2024
Jiacong Xu, Yiqun Mei, and Vishal Patel. Wild-gs: Real- time novel view synthesis from unconstrained photo collec- tions.Advances in Neural Information Processing Systems, 37:103334–103355, 2024. 3
2024
-
[28]
Zeyu Yang, Hongye Yang, Zijie Pan, and Li Zhang. Real-time photorealistic dynamic scene representation and rendering with 4d gaussian splatting.arXiv preprint arXiv:2310.10642, 2023. 3, 6
Pith/arXiv arXiv 2023
-
[29]
Gaussianupdate: Con- tinual 3d gaussian splatting update for changing environ- ments
Lin Zeng, Boming Zhao, Jiarui Hu, Xujie Shen, Ziqiang Dang, Hujun Bao, and Zhaopeng Cui. Gaussianupdate: Con- tinual 3d gaussian splatting update for changing environ- ments. InProceedings of the IEEE/CVF International Con- ference on Computer Vision, pages 25800–25809, 2025. 3
2025
-
[30]
Gaussian in the wild: 3d gaussian splatting for unconstrained image collections
Dongbin Zhang, Chuming Wang, Weitao Wang, Peihao Li, Minghan Qin, and Haoqian Wang. Gaussian in the wild: 3d gaussian splatting for unconstrained image collections. In European Conference on Computer Vision, pages 341–359. Springer, 2024. 3, 6 10 ChronoGS: Disentangling Invariants and Changes in Multi-Period Scenes Supplementary Material
2024
-
[31]
For clarity and completeness, we only summa- rize the most relevant aspects here
More Implementation Details To help readers better understand our method and reproduce our results, we provide additional implementation details in this section. For clarity and completeness, we only summa- rize the most relevant aspects here. Please refer to our code for further details and full implementation. 6.1. Environment Setup All experiments are ...
-
[32]
More Ablation Studies 7.1. Ablation on Feature Dimensions We further ablate the dimensions of the three feature com- ponents in our period-aware representation: the global period-varying featureg(t), the local period-varying fea- turef var i (t), and the base featuref base i . These dimensions control the capacity allocated to scene-level period-varying c...
-
[33]
First, we include comparisons with 3DGS[7] and realtime4DGS[28], which are omitted from the qualitative figures in the main paper due to space constraints
More Qualitative Results In this section, we provide additional qualitative compar- isons that complement the results shown in the main pa- per. First, we include comparisons with 3DGS[7] and realtime4DGS[28], which are omitted from the qualitative figures in the main paper due to space constraints. These results further demonstrate the advantages of our ...
-
[34]
More Information About ChronoScene To provide a comprehensive overview of the ChronoScene dataset, we present detailed statistics and visualizations that characterize the temporal distribution of both images and point clouds across different scenes. Tab. 8 summarizes the quantitative distribution of images and point clouds for each scene across different ...
This paper was first reviewed by deepseek-v4-flash on August 3, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.