REVIEW 3 major objections 5 minor 3 cited by
Self-Calibrating Gaussian Splatting for Large Field of View Reconstruction
T0 review · 3 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read A hybrid invertible distortion field lets uncalibrated fisheye images reconstruct scenes in as few as 10 captures.
desk verdict A solid, useful empirics-first paper on self-calibrating 3DGS for fisheye/wide-FOV, but the invertibility claim is oversold and the missing code/error bars keep it from being fully convincing. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The engine of the method is the hybrid distortion field: an invertible residual network, a stack of residual blocks whose learned maps are constrained to be contractions so the whole map is bijective, predicts displacement vectors on a sparse grid of control points, and bilinear interpolation turns those vectors into a dense, smooth distortion field. Because the network runs only on the sparse grid, its cost does not grow with the number of Gaussians; the bilinear lookup is the per-Gaussian operation. The second piece is cubemap rendering, which projects the scene onto several 90-degree faces so peripheral pixels retain near-uniform sampling density instead of the tan-like stretching of a single perspective plane; Gaussians are ordered by distance from the camera center so the ordering stays consistent across faces.
What would settle it
Take a 180-degree fisheye lens with strong entrance-pupil shift or a sharp distortion change near the sensor edge, calibrate it densely with a checkerboard, run this pipeline on the same views, and compare the learned distortion field against the checkerboard field in the periphery: if peripheral reprojection errors exceed the center errors while the center fits well, the smooth-bijective sparse-grid assumption is falsified.
Extended reading notes
Core claim
The central discovery is that the two conventional components of wide-angle reconstruction are both replaceable in a way that is compatible with fast Gaussian-splatting rasterization. Parametric distortion models, which fit real fisheye lenses poorly in the periphery, are replaced by a hybrid field: an invertible residual network predicts displacement vectors on a sparse grid of control points, and bilinear interpolation produces a smooth, dense, bijective distortion map whose optimization cost does not depend on the number of Gaussians. Single-plane perspective projection, which stretches pixels ever more severely as field of view approaches 180 degrees, is replaced by cubemap rendering that keeps pixel density approximately uniform across the image and applies the same distortion field during resampling. With these two pieces, the paper shows that distortion, intrinsics, extrinsics, and 3D Gaussians can be jointly optimized directly against raw pixels, yielding higher-quality reconstructions from fewer, wider captures than pipelines that first undistort and crop.
Load-bearing premise
The method assumes real lens distortion is a smooth, reversible (one-to-one) displacement that a coarse grid of corrected positions can represent; sharp or non-reversible distortions near the edge would break the peripheral accuracy that is the paper's main selling point.
Editorial extensions
If this is right
- Uncalibrated large-FOV captures become usable directly: the method reports higher reconstruction quality than parametric-model baselines on both real fisheye scenes and synthetic 180-degree scenes.
- Capture efficiency increases dramatically: as few as 10 wide-angle images can outperform 200 perspective images of the same scenes in the reported synthetic evaluation.
- The full raw image is usable: peripheral regions that baseline pipelines crop or stretch are modeled without severe distortion, widening the reconstructed coverage.
- Distortion, intrinsics, extrinsics, and scene geometry can be optimized jointly from noisy initial estimates, so pre-calibration with calibration targets is no longer required.
Reading between the lines
- A consequence the authors leave implicit: the hybrid field is a general bijective-distortion prior, so the same code path should calibrate anamorphic or non-radially symmetric lenses without architectural changes; only the tested demonstrations are radial and tangential.
- Because the network is evaluated on a sparse grid, the method's cost scales with calibration-grid resolution rather than scene size, suggesting a practical extension to online or video-rate self-calibration where a few frames would refine a running estimate of the lens.
- The remaining artifacts the paper attributes to cubemap-face boundaries point to a concrete next step, projecting 3D covariance onto a sphere instead of per-face planes, which would likely remove the need for special sorting.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents Self-Calibrating Gaussian Splatting, a 3D Gaussian Splatting extension for large field-of-view and fisheye imagery. It replaces parametric lens models with a hybrid distortion field: an invertible residual network evaluated on a sparse control-point grid, followed by bilinear interpolation to produce a continuous displacement field. Rendering is performed with cubemap projection to reduce peripheral stretching, and the system jointly optimizes extrinsics, intrinsics, distortion, and the 3D Gaussians against raw distorted pixels. Experiments on FisheyeNeRF, real 150- and 180-degree captures, and Mitsuba synthetic scenes report consistent improvement over 3DGS, Fisheye-GS, ADOP-GS, and CamP, with ablations for the hybrid field and cubemap. The central efficiency claim is that 10 to 100 fisheye images suffice where 200 perspective views are used for the baseline.
Significance. If the results hold, this is a practically useful contribution: it would allow 3DGS to be applied directly to raw wide-angle or fisheye footage without pre-calibration, improving peripheral fidelity relative to parametric distortion models and reducing capture counts. The paper has genuine strengths: evaluation on a public benchmark (FisheyeNeRF), comparisons against four independent baselines, ablations isolating the hybrid field and cubemap (Tables 3, 4, and 7), a frozen-initialization control demonstrating that the learned distortion field is not merely reproducing COLMAP's output, and a detailed supplement. However, the claimed invertibility of the hybrid distortion field is not established, and the headline few-capture comparison is confounded; both points need to be addressed before the significance claim is fully supported.
major comments (3)
- [Sec. 3.2, Eq. (7)] The hybrid distortion field is not guaranteed to be invertible, despite the paper's motivation. The iResNet R_theta is invertible, but D_theta(x) = x + interp(x, R_theta(P_c) - P_c) applies bilinear interpolation to displacements at sparse control points; when the grid spacing is coarse relative to the curvature of the displacement field, the interpolated field can have local Lipschitz constant greater than 1, producing folds where the Jacobian determinant is non-positive. Since the cubemap resampling in Sec. 3.3 and the physical interpretation of the distortion map depend on a one-to-one mapping between raw pixels and rays, a folded D_theta would let the photometric loss minimize a non-physical distortion model. The paper never reports Jacobian-determinant statistics, inverse-consistency errors, or a grid-resolution condition that guarantees bijectivity. Please add such diagnostics or modify the architecture to preserve invertibility, for example by constraining the Lipschitz constant of the interpolated displacement field or using an invertible interpolation scheme.
- [Sec. 4.3, Table 2] The 'few captures' comparison is confounded: the proposed method uses 10 to 100 fisheye views while the baseline uses 200 perspective views, so the two settings differ in total pixel count, resolution, and scene coverage rather than only in capture count. The claim that the method outperforms the baseline even with far fewer input views therefore conflates the advantage of a large FOV with reconstruction quality. The paper should report matched comparisons, such as a fisheye-capable baseline with the same pixel budget, per-scene coverage metrics, or effective per-pixel resolution. Supplementary Table 11 is a step in this direction, but it is not presented as a controlled test and still uses unmatched capture settings. Without this, the headline efficiency result is not fully substantiated.
- [Tables 1-12] All experiments appear to be single runs with no error bars or significance testing. Given the stochasticity of 3DGS training, the modest PSNR margins in some comparisons, and the sensitivity to control-grid resolution (Table 8 shows PSNR varying from 22.44 to 23.67 across grid resolutions) and per-scene learning rates (supplementary Sec. 6), the consistency of the reported gains cannot be assessed. Please report means and standard deviations over multiple seeds for the main FisheyeNeRF comparison and for the few-capture experiment.
minor comments (5)
- [Table 3 and Sec. 4.4] The text says that '-' indicates computationally infeasible cases, but the table itself uses '✗' and 'Out-of-Memory'; make the notation consistent.
- [Eq. (3)] The expression theta = arctan(r/1) is an unclear way to write the normalized fisheye angle; clarify the focal-length normalization used in the projection model.
- [Fig. 4 and Table 1] The baseline is referred to as both 'Adop-GS' and 'ADOP-GS' in different places; unify the naming.
- [Sec. 4.2] The paper says ADOP was re-implemented with an omnidirectional camera model, but the original ADOP already supports omnidirectional rendering; clarify what was changed in the re-implementation.
- [Reproducibility] The project page is referenced but no code release is indicated; providing the implementation would materially strengthen reproducibility.
Circularity Check
No circularity: hybrid distortion field is an optimized model, not a renamed input; results validated on external benchmarks.
full rationale
No circular step found. The central claim—that jointly optimizing poses, intrinsics, a hybrid distortion field, and cubemap rendering improves large-FOV 3D Gaussian reconstruction—is tested against external public datasets (FisheyeNeRF, NeRF-Synthetic) and independent baselines (3DGS, Fisheye-GS, ADOP-GS, CamP). The hybrid distortion field in Eq. 7 is a model choice fit by photometric loss; it is not defined in terms of the reconstruction quality metric, and held-out test views provide external falsification. The frozen-COLMAP ablation (Tab. 7) shows the optimized field improves over its own initialization, so the learned distortion is not merely reproducing the COLMAP parameters used to initialize it. The only relevant self-citation is NeuroLens [61] (co-author Xian), used for the iResNet architecture; the invertible-block construction is also attributed to external work [8] and implemented via FrEIA, and no uniqueness claim from prior work is invoked to force the design. The invertibility caveat raised by the skeptic concerns whether interpolating an iResNet displacement field on a sparse grid preserves bijectivity—a soundness/robustness question, not a reduction of outputs to inputs—and therefore does not count as circularity under the stated rules.
Assumptions & free parameters
free parameters (3)
- Control point grid resolution =
265x149 for FisheyeNeRF; 132x74 and 66x37 in ablations
- iResNet learning rate schedule =
1e-5 to 1e-7 for FisheyeNeRF; 1e-8 for real-world captures; 1e-7 for object-centric synthetic scenes
- Number of iResNet blocks =
L=5
assumptions (4)
- domain assumption Lens distortion is a smooth, bijective mapping (a diffeomorphism) from ideal to observed pixel coordinates
- domain assumption Photometric loss against raw distorted pixels is sufficient to recover extrinsics, intrinsics, and distortion jointly (self-calibration)
- domain assumption COLMAP provides a sufficiently accurate initialization for poses and distortion so that joint optimization is well-behaved
- standard math Fixed-point iteration inverts the iResNet reliably when the Lipschitz constant is < 1
Cite this review
Pith. "Pith review of Self-Calibrating Gaussian Splatting for Large Field of View Reconstruction." pith.science (2026). https://pith.science/paper/EDNXQJV5
@misc{pith2026250209563,
author = {Pith},
title = {Pith review of: Self-Calibrating Gaussian Splatting for Large Field of View Reconstruction},
year = {2026},
howpublished = {\url{https://pith.science/paper/EDNXQJV5}},
note = {Machine review of arXiv:2502.09563}
}
read the original abstract
In this paper, we present a self-calibrating framework that jointly optimizes camera parameters, lens distortion and 3D Gaussian representations, enabling accurate and efficient scene reconstruction. In particular, our technique enables high-quality scene reconstruction from Large field-of-view (FOV) imagery taken with wide-angle lenses, allowing the scene to be modeled from a smaller number of images. Our approach introduces a novel method for modeling complex lens distortions using a hybrid network that combines invertible residual networks with explicit grids. This design effectively regularizes the optimization process, achieving greater accuracy than conventional camera models. Additionally, we propose a cubemap-based resampling strategy to support large FOV images without sacrificing resolution or introducing distortion artifacts. Our method is compatible with the fast rasterization of Gaussian Splatting, adaptable to a wide variety of camera lens distortion, and demonstrates state-of-the-art performance on both synthetic and real-world datasets.
Figures
Figures from the paper (18 more)
Forward citations
Cited by 3 Pith papers
-
DirectFisheye-GS: Enabling Native Fisheye Input in Gaussian Splatting with Cross-View Joint Optimization
Native fisheye projection inside 3DGS plus feature-overlap cross-view joint optimization matches or beats prior fisheye and pinhole Gaussian methods on public datasets.
-
Splat-Based Metal Artifact Reduction in Cone-Beam CT via Compact Attenuation Modeling
A Gaussian splatting CBCT method with a compact quadratic Bezier material model reduces metal artifacts about 3 to 5 times faster than neural field baselines while better preserving fine structure.
-
Revisiting Pose Sensitivity in Splat-based Computed Tomography under Sparse-view Reconstruction
Splat-based CT artifacts under sparse views are traced to pose inaccuracy, and a joint pose-volume refinement substantially improves reconstruction quality.
Reference graph
Works this paper leans on
-
[1]
https://lensfun.github.io/
Lensfun. https://lensfun.github.io/. 6, 7, 19
-
[2]
Automatic lens distortion correction using one-parameter division models
Miguel Alem ´an-Flores, Luis Alvarez, Luis Gomez, and Daniel Santana-Cedr´es. Automatic lens distortion correction using one-parameter division models. Image Processing On Line, 2014. 3
2014
-
[3]
Framework for Easily Invertible Architectures (FrEIA), 2018-2022
Lynton Ardizzone, Till Bungert, Felix Draxler, Ullrich K¨othe, Jakob Kruse, Robert Schmier, and Peter Sorren- son. Framework for Easily Invertible Architectures (FrEIA), 2018-2022. 22
2018
-
[4]
360-gs: Layout-guided panoramic gaussian splatting for indoor roaming
Jiayang Bai, Letian Huang, Jie Guo, Wen Gong, Yuanqi Li, and Yanwen Guo. 360-gs: Layout-guided panoramic gaussian splatting for indoor roaming. arXiv preprint arXiv:2402.00763, 2024. 3
arXiv 2024
-
[5]
DSSIM: a structural similarity index for floating-point data
Allison H Baker, Alexander Pinard, and Dorit M Hammer- ling. Dssim: a structural similarity index for floating-point data. arXiv preprint arXiv:2202.02616, 2022. 4
work page Pith review arXiv 2022
-
[6]
Geometric properties of central catadioptric line images and their application in calibration
Jo ˜ao Pedro Barreto and Helder Araujo. Geometric properties of central catadioptric line images and their application in calibration. IEEE TPAMI, 2005. 3
work page 2005
-
[7]
Zip-nerf: Anti-aliased grid- based neural radiance fields
Jonathan T Barron, Ben Mildenhall, Dor Verbin, Pratul P Srinivasan, and Peter Hedman. Zip-nerf: Anti-aliased grid- based neural radiance fields. In ICCV, 2023. 16
work page 2023
-
[8]
Invertible residual net- works
Jens Behrmann, Will Grathwohl, Ricky TQ Chen, David Du- venaud, and J ¨orn-Henrik Jacobsen. Invertible residual net- works. In ICML, 2019. 2, 4
work page 2019
Show all 83 references
-
[9]
Rendering resources, 2016
Benedikt Bitterli. Rendering resources, 2016. https://benedikt-bitterli.me/resources/. 6, 19
2016
-
[10]
G. Bradski. The OpenCV Library. Dr. Dobb’s Journal of Software Tools, 2000. 2, 6
2000
-
[11]
Decentering distortion of lenses
Duane Brown. Decentering distortion of lenses. Photogram- metric engineering, 1996. 3
1996
-
[12]
New efficient solution to the absolute pose problem for camera with unknown focal length and radial distortion
Martin Bujnak, Zuzana Kukelova, and Tomas Pajdla. New efficient solution to the absolute pose problem for camera with unknown focal length and radial distortion. In ACCV,
-
[13]
Non-parametric structure-based calibration of radially sym- metric cameras
Federico Camposeco, Torsten Sattler, and Marc Pollefeys. Non-parametric structure-based calibration of radially sym- metric cameras. In ICCV, 2015. 3
2015
-
[14]
Optimizing content-preserving projections for wide-angle images
Robert Carroll, Maneesh Agrawala, and Aseem Agarwala. Optimizing content-preserving projections for wide-angle images. ACM TOG, 2009. 3
2009
-
[15]
Autocalibration via rank-constrained estimation of the absolute quadric
Manmohan Chandraker, Sameer Agarwal, Fredrik Kahl, David Nist ´er, and David Kriegman. Autocalibration via rank-constrained estimation of the absolute quadric. In CVPR, 2007. 2
2007
-
[16]
Globally optimal algorithms for strati- fied autocalibration
Manmohan Chandraker, Sameer Agarwal, David Kriegman, and Serge Belongie. Globally optimal algorithms for strati- fied autocalibration. IJCV, 2010. 2
2010
-
[17]
Cohen and Donald P
Michael F. Cohen and Donald P. Greenberg. The hemi- cube: a radiosity solution for complex environments. InSIG- GRAPH, 1985. 2, 5
1985
-
[18]
Decentred lens-systems
Alexander Eugen Conrady. Decentred lens-systems. Monthly notices of the royal astronomical society, 1919. 3
1919
-
[19]
Real-time dense map- ping for self-driving vehicles using fisheye cameras
Zhaopeng Cui, Lionel Heng, Ye Chuan Yeo, Andreas Geiger, Marc Pollefeys, and Torsten Sattler. Real-time dense map- ping for self-driving vehicles using fisheye cameras. In ICRA, 2019. 1
2019
-
[20]
Robust fusion of lidar and wide-angle camera data for autonomous mobile robots
Varuna De Silva, Jamie Roche, and Ahmet Kondoz. Robust fusion of lidar and wide-angle camera data for autonomous mobile robots. Sensors, 2018. 1
2018
-
[21]
Physics-based indirect illumination for inverse ren- dering
Youming Deng, Xueting Li, Sifei Liu, and Ming-Hsuan Yang. Physics-based indirect illumination for inverse ren- dering. In 3DV, 2024. 3
2024
-
[22]
Straight lines have to be straight
Frederic Devernay and Olivier Faugeras. Straight lines have to be straight. Machine vision and applications, 2001. 3
2001
-
[23]
A photometrically calibrated benchmark for monocular visual odometry
Jakob Engel, Vladyslav Usenko, and Daniel Cremers. A photometrically calibrated benchmark for monocular visual odometry. arXiv preprint arXiv:1607.02555, 2016. 3
2016 arXiv
-
[24]
Self-supervised camera self-calibration from video
Jiading Fang, Igor Vasiljevic, Vitor Guizilini, Rares Ambrus, Greg Shakhnarovich, Adrien Gaidon, and Matthew R Walter. Self-supervised camera self-calibration from video. InICRA,
-
[25]
Environment mapping and other applications of world projections
Ned Greene. Environment mapping and other applications of world projections. IEEE computer graphics and Applica- tions, 1986. 5
1986
-
[26]
A general imaging model and a method for finding its parameters
Michael D Grossberg and Shree K Nayar. A general imaging model and a method for finding its parameters. In ICCV,
-
[27]
The raxel imaging model and ray-based calibration
Michael D Grossberg and Shree K Nayar. The raxel imaging model and ray-based calibration. IJCV, 2005. 3
2005
-
[28]
Omni-nerf: neural radiance field from 360 im- age captures
Kai Gu, Thomas Maugey, Sebastian Knorr, and Christine Guillemot. Omni-nerf: neural radiance field from 360 im- age captures. In ICME, 2022. 3
2022
-
[29]
High-quality depth from uncalibrated small motion clip
Hyowon Ha, Sunghoon Im, Jaesik Park, Hae-Gon Jeon, and In So Kweon. High-quality depth from uncalibrated small motion clip. In CVPR, 2016. 3
2016
-
[30]
Parameter-free ra- dial distortion correction with center of distortion estimation
Richard Hartley and Sing Bing Kang. Parameter-free ra- dial distortion correction with center of distortion estimation. IEEE TPAMI, 2007. 3
2007
-
[31]
Multiple view ge- ometry in computer vision
Richard Hartley and Andrew Zisserman. Multiple view ge- ometry in computer vision . Cambridge university press,
-
[32]
360roam: Real-time indoor roaming using geometry- aware 360 radiance fields
Huajian Huang, Yingshu Chen, Tianjian Zhang, and Sai-Kit Yeung. 360roam: Real-time indoor roaming using geometry- aware 360 radiance fields. SIGGRAPH Asia, 2022. 3
2022
-
[33]
Sc-omnigs: Self-calibrating omnidirectional gaussian splatting
Huajian Huang, Yingshu Chen, Longwei Li, Hui Cheng, Tristan Braud, Yajie Zhao, and Sai-Kit Yeung. Sc-omnigs: Self-calibrating omnidirectional gaussian splatting. arXiv preprint arXiv:2502.04734, 2025. 3
2025 arXiv
-
[34]
Open source computer vision library
Itseez. Open source computer vision library. https:// github.com/itseez/opencv, 2015. 3
2015
-
[35]
Mitsuba renderer, 2010
Wenzel Jakob, S ´ebastien Speierer, Nicolas Roussel, Merlin Nimier-David, Delio Vicini, Tizian Zeltner, Baptiste Nicolet, Miguel Crespo, Vincent Leroy, and Ziyi Zhang. Mitsuba renderer, 2010. 6, 7, 19
2010
-
[36]
Self-calibrating neural radiance fields
Yoonwoo Jeong, Seokjun Ahn, Christopher Choy, Anima Anandkumar, Minsu Cho, and Jaesik Park. Self-calibrating neural radiance fields. In ICCV, 2021. 2, 3, 6, 8, 12, 15, 17, 18, 22, 23
2021
-
[37]
Cubemap-based perception-driven blind quality assessment for 360-degree images
Hao Jiang, Gangyi Jiang, Mei Yu, Yun Zhang, You Yang, Zongju Peng, Fen Chen, and Qingbo Zhang. Cubemap-based perception-driven blind quality assessment for 360-degree images. IEEE TIP, 2021. 5 10
2021
-
[38]
3d gaussian splatting for real-time radiance field rendering
Bernhard Kerbl, Georgios Kopanas, Thomas Leimk ¨uhler, and George Drettakis. 3d gaussian splatting for real-time radiance field rendering. ACM TOG, 2023. 2, 3, 4, 5, 6, 7, 8, 12, 16, 17, 18, 19, 20, 22, 23
2023
-
[39]
3d gaussian splatting as markov chain monte carlo
Shakiba Kheradmand, Daniel Rebain, Gopal Sharma, Wei- wei Sun, Jeff Tseng, Hossam Isack, Abhishek Kar, Andrea Tagliasacchi, and Kwang Moo Yi. 3d gaussian splatting as markov chain monte carlo. In NeurIPS, 2024. 22
2024
-
[40]
Adam: A method for stochastic optimization
Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. ICLR, 2015. 23
2015
-
[41]
Wide- angle camera distortions and non-uniform illumination in mobile robot tracking
Gregor Klan ˇcar, Matej Kristan, and Rihard Karba. Wide- angle camera distortions and non-uniform illumination in mobile robot tracking. Robotics and Autonomous Systems ,
-
[42]
Point-based neural rendering with per- view optimization
Georgios Kopanas, Julien Philip, Thomas Leimk ¨uhler, and George Drettakis. Point-based neural rendering with per- view optimization. In Computer Graphics Forum, 2021. 3, 4
2021
-
[43]
Efficient solution to the epipolar geometry for radially distorted cameras
Zuzana Kukelova, Jan Heller, Martin Bujnak, Andrew Fitzgibbon, and Tomas Pajdla. Efficient solution to the epipolar geometry for radially distorted cameras. In ICCV,
-
[44]
360fu- sionnerf: Panoramic neural radiance fields with joint guid- ance
Shreyas Kulkarni, Peng Yin, and Sebastian Scherer. 360fu- sionnerf: Panoramic neural radiance fields with joint guid- ance. In IROS, 2023. 3
2023
-
[45]
Plane-based calibration and auto-calibration of a fish-eye camera
Hongdong Li and Richard Hartley. Plane-based calibration and auto-calibration of a fish-eye camera. In ACCV, 2006. 3
2006
-
[46]
Omnigs: Omnidirectional gaussian splatting for fast radiance field reconstruction using omnidirectional images
Longwei Li, Huajian Huang, Sai-Kit Yeung, and Hui Cheng. Omnigs: Omnidirectional gaussian splatting for fast radiance field reconstruction using omnidirectional images. arXiv preprint arXiv:2404.03202, 2024. 3
2024 arXiv
-
[47]
Fisheye-gs: Lightweight and extensible gaussian splatting module for fisheye cameras
Zimu Liao, Siyan Chen, Rong Fu, Yi Wang, Zhongling Su, Hao Luo, Linning Xu, Bo Dai, Hengjie Li, Zhilin Pei, et al. Fisheye-gs: Lightweight and extensible gaussian splatting module for fisheye cameras. In ECCV Workshop, 2024. 1, 2, 3, 6, 7, 12, 18, 19, 20
2024
-
[48]
3d reconstruction from full-view fisheye camera
Chuiwen Ma, Liang Shi, Hanlu Huang, and Mengyuan Yan. 3d reconstruction from full-view fisheye camera. arXiv preprint arXiv:1506.06273, 2015. 1
2015 arXiv
-
[49]
Srinivasan, Rodrigo Ortiz-Cayon, Nima Khademi Kalantari, Ravi Ramamoorthi, Ren Ng, and Abhishek Kar
Ben Mildenhall, Pratul P. Srinivasan, Rodrigo Ortiz-Cayon, Nima Khademi Kalantari, Ravi Ramamoorthi, Ren Ng, and Abhishek Kar. Local light field fusion: Practical view syn- thesis with prescriptive sampling guidelines. ACM TOG ,
-
[50]
Nerf: Representing scenes as neural radiance fields for view syn- thesis
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. In ECCV, 2020. 1, 5, 12, 16
2020
-
[51]
3d gaussian ray trac- ing: Fast tracing of particle scenes
Nicolas Moenne-Loccoz, Ashkan Mirzaei, Or Perel, Ric- cardo de Lutio, Janick Martinez Esturo, Gavriel State, Sanja Fidler, Nicholas Sharp, and Zan Gojcic. 3d gaussian ray trac- ing: Fast tracing of particle scenes. SIGGRAPH ASIA, 2024. 2, 3
2024
-
[52]
Instant neural graphics primitives with a multires- olution hash encoding
Thomas M ¨uller, Alex Evans, Christoph Schied, and Alexan- der Keller. Instant neural graphics primitives with a multires- olution hash encoding. ACM TOG, 2022. 5
2022
-
[53]
Camera pose estimation using implicit distortion models
Linfei Pan, Marc Pollefeys, and Viktor Larsson. Camera pose estimation using implicit distortion models. In CVPR,
-
[54]
Camp: Camera preconditioning for neural radiance fields
Keunhong Park, Philipp Henzler, Ben Mildenhall, Jonathan T Barron, and Ricardo Martin-Brualla. Camp: Camera preconditioning for neural radiance fields. ACM TOG, 2023. 16
2023
-
[55]
Stratified self-calibration with the modulus constraint
Marc Pollefeys and Luc Van Gool. Stratified self-calibration with the modulus constraint. TPAMI, 1999. 2
1999
-
[56]
Self- calibration and metric reconstruction inspite of varying and unknown intrinsic camera parameters
Marc Pollefeys, Reinhard Koch, and Luc Van Gool. Self- calibration and metric reconstruction inspite of varying and unknown intrinsic camera parameters. IJCV, 1999. 3
1999
-
[57]
Adop: Approximate differentiable one-pixel point rendering
Darius R ¨uckert, Linus Franke, and Marc Stamminger. Adop: Approximate differentiable one-pixel point rendering. ACM TOG, 2022. 3, 6, 7
2022
-
[58]
A toolbox for easily calibrating omnidirectional cam- eras
Davide Scaramuzza, Agostino Martinelli, and Roland Sieg- wart. A toolbox for easily calibrating omnidirectional cam- eras. In IROS, 2006. 3
2006
-
[59]
Structure-from-motion revisited
Johannes Lutz Sch ¨onberger and Jan-Michael Frahm. Structure-from-motion revisited. In CVPR, 2016. 2, 3, 5, 6, 7, 8, 12, 14, 17, 20
2016
-
[60]
Isocube: Exploiting the cubemap hardware
Liang Wan, Tien-Tsin Wong, and Chi-Sing Leung. Isocube: Exploiting the cubemap hardware. TVCG, 2007. 5
2007
-
[61]
Neural lens modeling
Wenqi Xian, Alja ˇz Bo ˇziˇc, Noah Snavely, and Christoph Lassner. Neural lens modeling. In CVPR, 2023. 3, 4
2023
-
[62]
Vr-nerf: High- fidelity virtualized walkable spaces
Linning Xu, Vasu Agrawal, William Laney, Tony Garcia, Aayush Bansal, Changil Kim, Samuel Rota Bul `o, Lorenzo Porzi, Peter Kontschieder, Aljaˇz Boˇziˇc, et al. Vr-nerf: High- fidelity virtualized walkable spaces. In SIGGRAPH Asia ,
-
[63]
gsplat: An open-source library for Gaussian splatting
Vickie Ye, Ruilong Li, Justin Kerr, Matias Turkulainen, Brent Yi, Zhuoyang Pan, Otto Seiskari, Jianbo Ye, Jeffrey Hu, Matthew Tancik, and Angjoo Kanazawa. gsplat: An open-source library for Gaussian splatting. arXiv preprint arXiv:2409.06765, 2024. 22
2024 arXiv
-
[64]
Differentiable surface splatting for point-based geometry processing
Wang Yifan, Felice Serena, Shihao Wu, Cengiz ¨Oztireli, and Olga Sorkine-Hornung. Differentiable surface splatting for point-based geometry processing. ACM TOG, 2019. 3, 4
2019
-
[65]
Mip-splatting: Alias-free 3d gaussian splat- ting
Zehao Yu, Anpei Chen, Binbin Huang, Torsten Sattler, and Andreas Geiger. Mip-splatting: Alias-free 3d gaussian splat- ting. In CVPR, 2024. 23
2024
-
[66]
Camera self-calibration from video sequences: the Kruppa equations revisited
Cyril Zeller and Olivier Faugeras. Camera self-calibration from video sequences: the Kruppa equations revisited. PhD thesis, INRIA, 1996. 2
1996
-
[67]
Flexible camera calibration by viewing a plane from unknown orientations
Zhengyou Zhang. Flexible camera calibration by viewing a plane from unknown orientations. In ICCV, 1999. 3
1999
-
[68]
Ewa volume splatting
Matthias Zwicker, Hanspeter Pfister, Jeroen Van Baar, and Markus Gross. Ewa volume splatting. InVisualization, 2001. 4, 5 11 Self-Calibrating Gaussian Splatting for Large Field-of-View Reconstruction Supplementary Material Content
2001
-
[69]
Supplementary Video 12
-
[70]
Optimization of Camera Parameters 12
-
[71]
Distortion Estimation from COLMAP 17
-
[72]
Computational Efficiency 18
-
[73]
Extra Experiments 18
-
[74]
Implementation Details 22
-
[75]
Failure Cases and Limitations 23
-
[76]
supp video.mp4,
Supplementary Video We provide a video, “supp video.mp4,” to better compare our method with baselines. Our video is organized into three parts. The first part presents a comparison between our method and baselines on the FisheyeNeRF dataset [36] across three scenes. Vanilla 3D...
-
[77]
pose opt.mp4
Optimization of Camera Parameters In this section, we first derive the gradients for all camera parameters during training in Sec. 2.1. We then demon- strate the effectiveness of the joint optimization of distor- tion alongside extrinsic and intrinsic parameters in Sec. 2.2. F...
-
[78]
However, these parameters are inaccurate when derived from highly distorted images
Distortion Estimation from COLMAP In practice, the distortion estimated from the SfM [59] pipeline can be used as an initialization for our hybrid field, stabilizing training and accelerating convergence. However, these parameters are inaccurate when derived from highly distor...
-
[79]
To verify the hypothesis that our hy- brid method achieves a better balance between expressive- ness and efficiency, we perform an ablation study on the FisheyeNeRF dataset [36]
Computational Efficiency Training Time. To verify the hypothesis that our hy- brid method achieves a better balance between expressive- ness and efficiency, we perform an ablation study on the FisheyeNeRF dataset [36]. Specifically, we analyze the grid resolution of Pc, which ...
-
[80]
fisheye-gs failure.mp4
Extra Experiments 5.1. Quantitative Comparisons with Fisheye-GS In addition to Fig. 5 in the main paper, we also provide a quantitative evaluation of our method compared with the baseline Fisheye-GS [47] in Tab. 9 and Tab. 10. The per- formance degradation observed in the base...
-
[81]
We use the same loss function as 3DGS for training [38]
Implementation Details Our implementation is based on the codebase from Gaus- sian Splatting [38] and gsplat [63]. We use the same loss function as 3DGS for training [38]. The invertible ResNet is constructed using FrEIA [3]. We follow Kerbl et al
-
[82]
We also adopt the implementation of MCMC densi- fication [39]
to select hyperparameters for optimizing 3D Gaus- sians. We also adopt the implementation of MCMC densi- fication [39]. Compared with vanilla densification, MCMC helps remove floaters by using opacity thresholding to relo- cate dead Gaussians. While the final quantitative resu...
-
[83]
Recon- structing the sky poses challenges due to moving clouds and the large uniform regions of blue and white without tex- tures
Failure Cases and Limitations Real-world outdoor captures often include the sky. Recon- structing the sky poses challenges due to moving clouds and the large uniform regions of blue and white without tex- tures. The 3DGS [38] method tends to assign large Gaus- sians to the sky...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.