REVIEW 4 major objections 6 minor 38 references
R3GS: Gaussian Splatting for Robust Reconstruction and Relocalization in Unconstrained Image Collections
T0 review · 4 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read R3GS is a 3D Gaussian Splatting framework that jointly handles appearance variation, transient objects, and sky in unconstrained photo collections, improving novel-view synthesis and relocalization while keeping real-time rendering.
desk verdict Useful engineering combination, but the SOTA claim doesn't survive contact with Table I. 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 load-bearing object is the hybrid anchor: per-anchor, a 32-dimensional local feature is queried from a multiresolution hash grid and concatenated with a 64-dimensional global appearance feature extracted from the reference image by a CNN encoder; three shallow MLPs map the concatenation to the Gaussian attributes (opacity, color, covariance). Around this core sit two supporting mechanisms. The first is a visibility map: a pretrained LRASPP-MobileNet human detector, fine-tuned for 20,000–25,000 iterations on the scene, is used to mask transient foreground objects while leaving the sky untouched. The second is a sky sphere: 20,000 Gaussians sampled by Fibonacci spherical mapping on a sphere of radius ten times the scene radius, with fixed positions, a OneFormer sky mask, and a depth prior that keeps sky geometry at infinity. Relocalization rests on CosPlace: the query's place-recognition descriptor is compared with a bank of training descriptors, the three nearest neighbors' poses are combined with distance-inverse weights to initialize the camera, and photometric loss refines the pose with Gaussian splatting gradients.
What would settle it
On a Phototourism-style scene, take held-out test images that do contain transient objects with manually labeled masks, and compare rendering and relocalization with and without R3GS's visibility map; if novel-view PSNR/LPIPS on the transient-containing frames does not improve over the no-mask baseline, or if the fine-tuned detector's IoU on non-human transient classes falls well below its human-class IoU, then the transient-generalization claim is contradicted. A cheaper check is to report the visibility map's precision and recall on held-out transients, which the paper currently omits.
Extended reading notes
Core claim
The central claim is that the three long-standing failure modes of 3DGS on in-the-wild data—appearance variation, transient objects, and sky—can be handled by one hybrid architecture without sacrificing the method's speed or memory footprint. The scene is represented by anchors, each carrying a local hash-grid code and a per-image CNN appearance code, feeding three shallow MLPs that emit Gaussian color, opacity, and covariance. Transient content is suppressed by a visibility map produced by a fine-tuned LRASPP-MobileNet detector, and the sky is rendered by Gaussians pinned to a sphere of radius ten times the scene radius, with a depth prior preventing foreground-sky depth collisions. For relocalization, an appearance-conditioned standard 3DGS model is rendered from a query image, initialized with a CosPlace-weighted pose from the three nearest training views, and refined by photometric loss. The result, the authors claim, is state-of-the-art PSNR, SSIM, and LPIPS on Brandenburg Gate, Sacre Coeur, and Trevi Fountain, and ATE of 0.101, 0.021, and 0.367 respectively against a 3DGS baseline, while rendering at 239 FPS and training in roughly 0.31 hours per 10,000 iterations.
Load-bearing premise
The load-bearing premise is that fine-tuning a human detector on the training scene yields a visibility map that correctly masks every kind of transient object—people, cars, posters, banners—and that the map is accurate enough to exclude those pixels during optimization without erasing useful scene content.
Editorial extensions
If this is right
- On the three Phototourism scenes, R3GS exceeds NeRF-W, Ha-NeRF, CR-NeRF, WildGaussians, and the downsampled GS-W on PSNR, SSIM, and LPIPS, while rendering at 239 FPS without caching.
- The same pipeline estimates camera poses with ATE of 0.101 (Brandenburg Gate), 0.021 (Sacre Coeur), and 0.367 (Trevi Fountain), a large improvement over the 3DGS baseline (0.401, 0.381, 1.377).
- Because the appearance code is per-image and the exported model is a standard 3DGS point cloud, the scene can be rendered with a chosen appearance at a given pose without storing per-Gaussian high-dimensional features.
- Masking transient objects improves visual quality in training views, and applying the mask only to the foreground prevents clouds from being misclassified as transient.
- Fixed sky-Gaussian positions plus a depth prior eliminate the depth overlap between sky and foreground that causes floaters.
Reading between the lines
- A natural extension the paper does not test is whether the fine-tuned detector transfers to a different landmark scene; the paper reports no mask-accuracy numbers, so held-out transient categories could behave worse than the training-time masks.
- The CosPlace-based pose initialization only needs a feature bank of training poses, so the same relocalization idea could scale to very large collections where full bundle adjustment is impractical, assuming the three-nearest-neighbor retrieval is geographically reliable.
- Because each image supplies its own appearance code, the exported 3DGS model could in principle be re-rendered with a different appearance code to simulate time-of-day or weather changes, a capability the paper notes but does not demonstrate.
- The visibility map is applied only to the foreground so clouds are not masked; a direct test of the sky-handling claim would be to compare floaters and depth consistency on scenes with partial cloud cover against a no-sky-prior baseline.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes R3GS, a 3D Gaussian Splatting framework for unconstrained photo collections. It combines per-image CNN appearance features with per-anchor multiresolution hash-grid features to predict Gaussian attributes, fine-tunes a lightweight human detector to produce visibility maps for masking transient objects, handles sky regions by constraining sky Gaussians to a large-radius sphere with a depth prior, and introduces a relocalization procedure that initializes poses via CosPlace retrieval and refines them with photometric loss. Experiments on three Phototourism scenes report novel-view-synthesis quality (Table I), relocalization accuracy (Table II), ablations (Table III), and training/rendering speed.
Significance. If the claims were fully supported, the hybrid anchor representation and the relocalization-by-appearance-tuning pipeline would be useful contributions to in-the-wild 3DGS, and the paper demonstrates real-time rendering with competitive NVS numbers. The paper also states that code will be open-sourced, which would aid reproducibility. However, the current quantitative evidence does not support the unconditional state-of-the-art claim: Table I shows GS-W outperforming R3GS on Brandenburg Gate and on Trevi Fountain LPIPS, the sky-handling ablation has an unexplained SSIM regression, and the visibility-map generalization claim lacks mask-level evaluation. The approach is promising, but the claims need to be aligned with the evidence before the paper is publishable.
major comments (4)
- [Section IV-B, Table I] The text states 'Our method outperforms all concurrent works in PSNR, SSIM, and LPIPS' and the caption of Table I says 'We significantly outperform all baseline methods', but Table I contradicts this. On Brandenburg Gate, GS-W scores 28.39 PSNR / 0.9306 SSIM / 0.0833 LPIPS versus R3GS's 27.02 / 0.9240 / 0.1317, and on Trevi Fountain GS-W has a better LPIPS (0.1640 versus 0.1950). The footnote that GS-W downsamples input by 2x and would overflow memory at full resolution may justify excluding it from a full-resolution comparison, but then the SOTA claim must be explicitly restricted to full-resolution methods. As written, the abstract, introduction, and Section IV-B make an unconditional claim that the table does not support; please rephrase the claim or add a full-resolution comparison with GS-W if feasible.
- [Section IV-C, Table III] Table III shows the full model's SSIM on Brandenburg Gate (0.9240) is lower than the no-sky variant (0.9421), while the text says removing the sky module causes the visibility map to treat the sky as transient and disrupts sky learning. The paper does not explain this metric regression. Since sky handling is a stated contribution, either provide an explanation (for example, if the sky mask incorrectly masks foreground pixels or the depth prior biases SSIM) or temper the claim that sky handling improves rendering fidelity; without this, the benefit of the sky module is not established.
- [Section III-C, Section IV-A] The transient-object removal module is a core contribution but is underspecified. The paper states that a pre-trained LRASPP-MobileNet human detector is fine-tuned for 20,000-25,000 iterations in Section III-C, yet Section IV-A says fine-tuning converges after 5,000 iterations, and the supervision signal for this fine-tuning is never stated. The claim that the visibility map 'efficiently generalizes to other transient objects (such as posters, banners, and cars)' is supported only by final rendering metrics; no mask accuracy, intersection-over-union, or qualitative mask statistics are reported. Because Section IV-C notes that the test set contains no transient objects, the NVS metrics cannot demonstrate that transient handling improves test-time rendering. Please specify the fine-tuning protocol, report mask-level metrics if possible, and discuss the generalization evidence.
- [Section IV-B, Table II] The relocalization experiment compares only with a 3DGS baseline, which is insufficient to support the claim of 'robust relocalization' or 'superior relocalization accuracy'. Established pose-estimation and relocalization baselines should be included, or the claim should be limited to 'improves over direct 3DGS pose optimization'. In addition, on Brandenburg Gate R3GS's rotation distance (0.582) is slightly worse than 3DGS's (0.576), and the paper does not discuss this. The ATE improvements are large, but the single-baseline comparison and the unaddressed rotation regression weaken the conclusion.
minor comments (6)
- [Abstract, Section III] There are numerous typos, including 'ffne-tune' in the abstract, 'golobal' in Section III-B, and 'adress' in the introduction; the paper needs a careful proofread.
- [Section IV-B, Relocalization] The statement that the highest and lowest ATE values are excluded in each group is not accompanied by the number of test images or the variance of the remaining values, making it hard to judge the stability of the reported improvements.
- [Equation (4)] Equation (4) defines alpha using sigma and delta, but these quantities are not defined in the preliminaries; in standard 3DGS the opacity alpha is a learnable attribute, so the equation should be aligned with the notation used in the rest of the paper.
- [Equation (10)] Equation (10) for ATE is malformed: the square root appears to apply to an underspecified sum, and no averaging or mean operation is shown; please rewrite the ATE definition clearly.
- [References, [38]] Reference [38] is cited for COLMAP poses, but the cited title is 'Colmap: A memory-efficient occupancy grid mapping framework', which is a different work; the correct COLMAP reference should be used.
- [Table II] In Table II the first row reads '0.4010.576' without a clear separator between the ATE and Rot Dist values; please format the numbers consistently.
Circularity Check
No circularity: R3GS's rendering and relocalization claims are evaluated on held-out test images and external baselines; no load-bearing step reduces to its own inputs.
full rationale
The paper's derivation chain does not exhibit any of the enumerated circularity patterns. The hybrid representation combines a CNN global feature with hash-grid local features and MLP-predicted Gaussian attributes; this is a standard encoder-decoder construction trained with photometric losses against held-out test views, so the NVS numbers in Table I are not re-encodings of fitted parameters. The visibility map is produced by fine-tuning a pretrained LRASPP-MobileNet detector; although the fine-tuning supervision is not specified and the test set contains no transient objects, the mask is an external pretrained network output used during optimization rather than a quantity defined to match the rendering metrics. The sky handling uses OneFormer sky masks plus a fixed-radius sphere and depth-regularization losses, none of which encode the reported PSNR/SSIM/LPIPS values. The relocalization pipeline initializes poses from CosPlace retrieval over training images and then optimizes a photometric loss against the test image with the Gaussians fixed; this is genuine test-time optimization, not a fitted input renamed as a prediction. The internal contradiction in Section IV-B, where the text claims R3GS outperforms all concurrent works while Table I shows GS-W higher on Brandenburg Gate PSNR/SSIM and Trevi Fountain LPIPS, is an accuracy/correctness concern about the SOTA claim, not a circularity. No self-citation chain is load-bearing, and no uniqueness theorem or ansatz is smuggled via citation. The paper is self-contained against external benchmarks, so the appropriate finding is no significant circularity.
Assumptions & free parameters
free parameters (6)
- Sky sphere radius factor =
10x scene radius
- Scene radius ratio =
0.97 of L2 norm of centered SfM points
- Number of sky anchors =
20,000
- Visibility map fine-tuning schedule =
5000 to 25000 iterations (text varies)
- Number of pose seed images =
3 nearest neighbors
- Appearance and hash feature dimensions =
64-dim CNN, 32-dim hash
assumptions (5)
- domain assumption After appearance conditioning, the rendered image and the query image are photometrically consistent for pose optimization.
- domain assumption The fine-tuned human detector's visibility map accurately labels transient objects in the foreground.
- domain assumption CosPlace feature distance correlates with spatial proximity of cameras.
- standard math The Gaussian rasterizer can backpropagate gradients with respect to depth and alpha for the sky depth constraint.
- standard math Standard 3DGS differentiable rasterization equations (Eqs. 1 to 5) hold as in reference [1].
Cite this review
Pith. "Pith review of R3GS: Gaussian Splatting for Robust Reconstruction and Relocalization in Unconstrained Image Collections." pith.science (2026). https://pith.science/paper/ZDO33NBA
@misc{pith2026250515294,
author = {Pith},
title = {Pith review of: R3GS: Gaussian Splatting for Robust Reconstruction and Relocalization in Unconstrained Image Collections},
year = {2026},
howpublished = {\url{https://pith.science/paper/ZDO33NBA}},
note = {Machine review of arXiv:2505.15294}
}
read the original abstract
We propose R3GS, a robust reconstruction and relocalization framework tailored for unconstrained datasets. Our method uses a hybrid representation during training. Each anchor combines a global feature from a convolutional neural network (CNN) with a local feature encoded by the multiresolution hash grids [2]. Subsequently, several shallow multi-layer perceptrons (MLPs) predict the attributes of each Gaussians, including color, opacity, and covariance. To mitigate the adverse effects of transient objects on the reconstruction process, we ffne-tune a lightweight human detection network. Once ffne-tuned, this network generates a visibility map that efffciently generalizes to other transient objects (such as posters, banners, and cars) with minimal need for further adaptation. Additionally, to address the challenges posed by sky regions in outdoor scenes, we propose an effective sky-handling technique that incorporates a depth prior as a constraint. This allows the inffnitely distant sky to be represented on the surface of a large-radius sky sphere, signiffcantly reducing ffoaters caused by errors in sky reconstruction. Furthermore, we introduce a novel relocalization method that remains robust to changes in lighting conditions while estimating the camera pose of a given image within the reconstructed 3DGS scene. As a result, R3GS significantly enhances rendering ffdelity, improves both training and rendering efffciency, and reduces storage requirements. Our method achieves state-of-the-art performance compared to baseline methods on in-the-wild datasets. The code will be made open-source following the acceptance of the paper.
Figures
Reference graph
Works this paper leans on
-
[1]
3D Gaussian Splatting for Real-Time Radiance Field Rendering,
B. Kerbl, G. Kopanas, T. Leimkuehler, and G. Drettakis, “3D Gaussian Splatting for Real-Time Radiance Field Rendering,”ACM Transactions on Graphics, vol. 42, pp. 1–14, Aug. 2023
work page 2023
-
[2]
Instant Neural Graphics Primitives with a Multiresolution Hash Encoding,
T. M ¨uller, A. Evans, C. Schied, and A. Keller, “Instant Neural Graphics Primitives with a Multiresolution Hash Encoding,”ACM Transactions on Graphics, vol. 41, pp. 1–15, July 2022
work page 2022
-
[3]
NeRF: Representing Scenes as Neural Radiance Fields for View Synthesis,
B. Mildenhall, P. P. Srinivasan, M. Tancik, J. T. Barron, R. Ra- mamoorthi, and R. Ng, “NeRF: Representing Scenes as Neural Radiance Fields for View Synthesis,” Aug. 2020
work page 2020
-
[4]
Nerf in the wild: Neural radiance fields for unconstrained photo collections,
R. Martin-Brualla, N. Radwan, M. S. Sajjadi, J. T. Barron, A. Doso- vitskiy, and D. Duckworth, “Nerf in the wild: Neural radiance fields for unconstrained photo collections,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp. 7210–7219, 2021
work page 2021
-
[5]
Hallucinated neural radiance fields in the wild,
X. Chen, Q. Zhang, X. Li, Y . Chen, Y . Feng, X. Wang, and J. Wang, “Hallucinated neural radiance fields in the wild,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 12943–12952, 2022
work page 2022
-
[6]
Cross-ray neural radiance fields for novel-view synthesis from unconstrained image collections,
Y . Yang, S. Zhang, Z. Huang, Y . Zhang, and M. Tan, “Cross-ray neural radiance fields for novel-view synthesis from unconstrained image collections,” inProceedings of the IEEE/CVF International Conference on Computer Vision, pp. 15901–15911, 2023
work page 2023
-
[7]
Fastnerf: High-fidelity neural rendering at 200fps,
S. J. Garbin, M. Kowalski, M. Johnson, J. Shotton, and J. Valentin, “Fastnerf: High-fidelity neural rendering at 200fps,” inProceedings of the IEEE/CVF international conference on computer vision, pp. 14346–14355, 2021
work page 2021
-
[8]
Instant neural graphics primitives with a multiresolution hash encoding,
T. M ¨uller, A. Evans, C. Schied, and A. Keller, “Instant neural graphics primitives with a multiresolution hash encoding,”ACM transactions on graphics (TOG), vol. 41, no. 4, pp. 1–15, 2022
2022
Show all 38 references
-
[9]
Structure-from-motion revis- ited,
J. L. Schonberger and J.-M. Frahm, “Structure-from-motion revis- ited,” inProceedings of the IEEE conference on computer vision and pattern recognition, pp. 4104–4113, 2016
2016
-
[10]
Oneformer: One transformer to rule universal image segmentation,
J. Jain, J. Li, M. T. Chiu, A. Hassani, N. Orlov, and H. Shi, “Oneformer: One transformer to rule universal image segmentation,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 2989–2998, 2023
2023
-
[11]
Scaffold-gs: Structured 3d gaussians for view-adaptive rendering,
T. Lu, M. Yu, L. Xu, Y . Xiangli, L. Wang, D. Lin, and B. Dai, “Scaffold-gs: Structured 3d gaussians for view-adaptive rendering,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 20654–20664, 2024
2024
-
[12]
Vastgaussian: Vast 3d gaussians for large scene reconstruction,
J. Lin, Z. Li, X. Tang, J. Liu, S. Liu, J. Liu, Y . Lu, X. Wu, S. Xu, Y . Yan,et al., “Vastgaussian: Vast 3d gaussians for large scene reconstruction,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 5166–5175, 2024
2024
-
[13]
Pygs: Large-scale scene representation with pyramidal 3d gaussian splatting,
Z. Wang and D. Xu, “Pygs: Large-scale scene representation with pyramidal 3d gaussian splatting,”arXiv preprint arXiv:2405.16829, 2024
2024 arXiv
-
[14]
Gs-lrm: Large reconstruction model for 3d gaussian splatting,
K. Zhang, S. Bi, H. Tan, Y . Xiangli, N. Zhao, K. Sunkavalli, and Z. Xu, “Gs-lrm: Large reconstruction model for 3d gaussian splatting,”arXiv preprint arXiv:2404.19702, 2024
2024 arXiv
-
[15]
Splatam: Splat track & map 3d gaussians for dense rgb-d slam,
N. Keetha, J. Karhade, K. M. Jatavallabhula, G. Yang, S. Scherer, D. Ramanan, and J. Luiten, “Splatam: Splat track & map 3d gaussians for dense rgb-d slam,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 21357– 21366, 2024
2024
-
[16]
Rtg-slam: Real-time 3d reconstruction at scale using gaussian splatting,
Z. Peng, T. Shao, L. Yong, J. Zhou, Y . Yang, J. Wang, and K. Zhou, “Rtg-slam: Real-time 3d reconstruction at scale using gaussian splatting,” 2024
2024
-
[17]
Gaussian splatting slam,
H. Matsuki, R. Murai, P. H. Kelly, and A. J. Davison, “Gaussian splatting slam,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 18039–18048, 2024
2024
-
[18]
Drivinggaussian: Composite gaussian splatting for surrounding dy- namic autonomous driving scenes,
X. Zhou, Z. Lin, X. Shan, Y . Wang, D. Sun, and M.-H. Yang, “Drivinggaussian: Composite gaussian splatting for surrounding dy- namic autonomous driving scenes,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 21634– 21643, 2024
2024
-
[19]
Gaussianbev: 3d gaussian representation meets perception models for bev segmentation,
F. Chabot, N. Granger, and G. Lapouge, “Gaussianbev: 3d gaussian representation meets perception models for bev segmentation,” 2024
2024
-
[20]
Gaussianformer: Scene as gaussians for vision-based 3d semantic occupancy predic- tion,
Y . Huang, W. Zheng, Y . Zhang, J. Zhou, and J. Lu, “Gaussianformer: Scene as gaussians for vision-based 3d semantic occupancy predic- tion,”arXiv preprint arXiv:2405.17429, 2024
2024 arXiv
-
[21]
Wild-gs: Real-time novel view synthesis from unconstrained photo collections,
J. Xu, Y . Mei, and V . M. Patel, “Wild-gs: Real-time novel view synthesis from unconstrained photo collections,”arXiv preprint arXiv:2406.10373, 2024
2024 arXiv
-
[22]
Gaussian in the wild: 3d gaussian splatting for unconstrained image collections,
D. Zhang, C. Wang, W. Wang, P. Li, M. Qin, and H. Wang, “Gaussian in the wild: 3d gaussian splatting for unconstrained image collections,”arXiv preprint arXiv:2403.15704, 2024
2024 arXiv
-
[23]
Wildgaussians: 3d gaussian splatting in the wild,
J. Kulhanek, S. Peng, Z. Kukelova, M. Pollefeys, and T. Sattler, “Wildgaussians: 3d gaussian splatting in the wild,”arXiv preprint arXiv:2407.08447, 2024
2024 arXiv
-
[24]
Splatfacto-w: A nerfstudio imple- mentation of gaussian splatting for unconstrained photo collections,
C. Xu, J. Kerr, and A. Kanazawa, “Splatfacto-w: A nerfstudio imple- mentation of gaussian splatting for unconstrained photo collections,” arXiv preprint arXiv:2407.12306, 2024
2024 arXiv
-
[25]
Optical models for direct volume rendering,
N. Max, “Optical models for direct volume rendering,”IEEE Trans- actions on Visualization and Computer Graphics, vol. 1, no. 2, pp. 99–108, 1995
1995
-
[26]
V olume rendering digest (for nerf),
A. Tagliasacchi and B. Mildenhall, “V olume rendering digest (for nerf),”arXiv preprint arXiv:2209.02417, 2022
2022 arXiv
-
[27]
Swag: Splatting in the wild images with appearance-conditioned gaussians,
H. Dahmani, M. Bennehar, N. Piasco, L. Roldao, and D. Tsishkou, “Swag: Splatting in the wild images with appearance-conditioned gaussians,” 2024
2024
-
[28]
Searching for mobilenetv3,
A. Howard, M. Sandler, G. Chu, L.-C. Chen, B. Chen, M. Tan, W. Wang, Y . Zhu, R. Pang, V . Vasudevan,et al., “Searching for mobilenetv3,” inProceedings of the IEEE/CVF international conference on computer vision, pp. 1314–1324, 2019
2019
-
[29]
Microsoft COCO: common objects in context,
T. Lin, M. Maire, S. J. Belongie, L. D. Bourdev, R. B. Gir- shick, J. Hays, P. Perona, D. Ramanan, P. Doll ´ar, and C. L. Zitnick, “Microsoft COCO: common objects in context,”CoRR, vol. abs/1405.0312, 2014
2014 arXiv
-
[30]
Spherical fibonacci mapping,
B. Keinert, M. Innmann, M. S ¨anger, and M. Stamminger, “Spherical fibonacci mapping,”ACM Trans. Graph., vol. 34, nov 2015
2015
-
[31]
Rethinking visual geo- localization for large-scale applications,
G. Berton, C. Masone, and B. Caputo, “Rethinking visual geo- localization for large-scale applications,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pp. 4878–4888, June 2022
2022
-
[32]
Gaussian Splatting SLAM,
H. Matsuki, R. Murai, P. H. J. Kelly, and A. J. Davison, “Gaussian Splatting SLAM,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2024
2024
-
[33]
Adam: A method for stochastic optimization,
D. P. Kingma, “Adam: A method for stochastic optimization,”arXiv preprint arXiv:1412.6980, 2014
2014 arXiv
-
[34]
Coco dataset stuff segmentation challenge,
D. Puri, “Coco dataset stuff segmentation challenge,” in2019 5th international conference on computing, communication, control and automation (ICCUBEA), pp. 1–5, IEEE, 2019
2019
-
[35]
Photo tourism: exploring photo collections in 3d,
N. Snavely, S. M. Seitz, and R. Szeliski, “Photo tourism: exploring photo collections in 3d,” inACM siggraph 2006 papers, pp. 835– 846, 2006
2006
-
[36]
Image quality assessment: from error visibility to structural similarity,
Z. Wang, A. C. Bovik, H. R. Sheikh, and E. P. Simoncelli, “Image quality assessment: from error visibility to structural similarity,” IEEE transactions on image processing, vol. 13, no. 4, pp. 600–612, 2004
2004
-
[37]
The unreasonable effectiveness of deep features as a perceptual metric,
R. Zhang, P. Isola, A. A. Efros, E. Shechtman, and O. Wang, “The unreasonable effectiveness of deep features as a perceptual metric,” inProceedings of the IEEE conference on computer vision and pattern recognition, pp. 586–595, 2018
2018
-
[38]
Colmap: A memory-efficient occupancy grid mapping framework,
A. Fisher, R. Cannizzaro, M. Cochrane, C. Nagahawatte, and J. L. Palmer, “Colmap: A memory-efficient occupancy grid mapping framework,”Robotics and Autonomous Systems, vol. 142, p. 103755, 2021
2021
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.