REVIEW 4 major objections 6 minor 48 references
Objects as Audio-Visual Modal Sound Fields
T0 review · 4 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read From a few photos and taps, an object's impact-sound field can be reconstructed, yielding accurate sounds at contact points that were never struck.
desk verdict AV-MSF is a genuinely new few-shot representation for object impact sound rendering, but the headline SOTA numbers in Table 1 are undermined by model selection on the ENV test metric. 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 Eq. (4), the modal synthesis model: $$s(x,t)=\sum_{i=1}^N g_i(x)$e^{{-d_i t}}$\sin(2\pi f_i t)+\sum_{i=1}^F \epsilon(m_i,t).$$ The frequencies $\{f_i\}$ and dampings $\{d_i\}$ are global and extracted by STFT plus log-linear regression; the neural gain field $G_\theta(x)$ supplies the only spatially varying terms, and a static filtered-noise term $\epsilon(m_i,t)$ absorbs non-modal environmental effects. The visual machinery that carries the few-shot generalization is a 3D Gaussian Splatting reconstruction whose per-Gaussian features come from DINOv2, refined by symmetry-aware pooling; a query point's gains are predicted by an MLP attending over cluster-level visual descriptors.
What would settle it
Record impact sounds at many surface points of an object with deliberately non-uniform material (e.g., a metal bowl with a rubber patch), estimate per-location damping via log-linear regression, and compare the spread of damping across locations to its mean: if the spread is comparable to the mean at several modes, the global-modal-plus-gain model in Eq. (4) cannot represent that object's sound field, and AV-MSF's rendering errors on the patched region should remain large regardless of training shots.
Extended reading notes
Core claim
The paper's central claim is that the Audio-Visual Modal Sound Field (AV-MSF) representation—built from a 3D Gaussian Splatting point cloud, dense DINOv2 visual features lifted into 3D, and modal parameters extracted from a few real impact recordings—captures an object's impact sound field well enough to render novel-position impact sounds more accurately than prior physics-based and data-driven baselines. Concretely, an impact at contact point $x$ is rendered as a sum of $N$ decaying sinusoids with object-global frequencies and dampings, gains $g_i(x)$ predicted by a neural field conditioned on local appearance, geometry offsets, and attention over region features, plus a learnable filtered-noise residual. On ObjectFolder Real and RealImpact, the method reports the best L1, L1-log, envelope, and CDPAM scores, and it retains substantial accuracy with as few as one or two training recordings.
Load-bearing premise
The load-bearing premise is that a real object's impact sound is well captured by a small set of object-wide vibration frequencies and decay rates plus per-location loudness of each mode; the paper itself notes this linear-modal assumption does not hold for all objects and that its datasets are limited to uniform materials.
Editorial extensions
If this is right
- A single object's sound field can be reconstructed from about 4–8 recorded taps with little loss; even 1–2 taps still yield usable novel-position rendering, where data-driven models fail.
- Rendering accuracy stops depending on nearest-neighbor training sounds: on non-symmetric objects AV-MSF beats the KNN baseline on all reported metrics.
- The learned gain field is discriminative enough to localize a previously unheard impact by matching extracted gains against $G_\theta(x)$, outperforming DiffSound.
- Text-guided material editing can shift modal frequencies toward a target material's cluster while preserving the spatial gain ratios dictated by linear modal analysis.
- The visual prior transfers beyond sampled areas: training taps concentrated in one region (closest-point sampling) do not collapse performance, and more input views monotonically help.
Reading between the lines
- One unstated extension is cross-object transfer: because the gains are predicted from DINOv2 features rather than object-specific coordinates, a gain field pretrained on many objects might be adapted to an unseen object with a single tap.
- The cleanest way to isolate the visual prior would be to compare AV-MSF's predicted gains against modal analysis on a reconstructed mesh of the same object; agreement would confirm that the learned field recovers physical mode shapes rather than memorizing training locations.
- The global-damping simplification suggests a testable refinement: allowing per-location damping would likely improve rendering on non-uniform objects, at the cost of fewer training taps being shared across the surface.
- Because the failure cases sit near sharp geometric changes with no similar training taps, a curriculum that deliberately samples high-curvature regions, rather than farthest-point sampling, could improve the few-shot frontier.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper introduces AV-MSF, an object-level audio-visual representation for impact sound synthesis. The method starts from multi-view RGB images, reconstructs a 3D Gaussian Splatting scene, lifts DINOv2 features into 3D, detects and applies geometric symmetries, extracts global modal frequencies and dampings from a few impact recordings, and learns a position-dependent neural gain field via an attention MLP. Impact sounds at novel contact locations are rendered as a sum of damped sinusoids plus a filtered-noise residual, and the parameters are optimized with a multi-scale STFT loss. Experiments on ObjectFolder Real and RealImpact compare against DiffSound, SonicGauss, KNN, and simple baselines, with additional ablations and demonstrations of contact localization and text-driven sound editing.
Significance. If the central claim holds, AV-MSF provides a notably sample-efficient and physically interpretable route to object impact sound rendering, combining a compact modal parameterization with visual priors. The paper is commendably explicit about its assumptions and limitations (Sec. 3.1 and Sec. 5), and the downstream applications, especially contact localization, are interesting and potentially useful. However, the headline state-of-the-art claim rests on an experimental protocol in which the model is selected on a test-set metric (Supp. B), and the margins over strong baselines on ObjectFolder Real are small. Until the selection protocol is corrected or clarified, the empirical contribution is not fully supported by the reported numbers.
major comments (4)
- [Supp. B / Table 1] The model-selection protocol in Supp. B is test-set selection on a reported metric. The text states that for each object the authors run both the single-damping and spatial-damping variants and choose the best model based on the ENV metric, and the same paragraph reports that learning rate, epoch count, cutoff weight, and cluster number are selected from ranges. ENV is one of the four metrics in Table 1, and the Table 1 margins over KNN on ObjectFolder Real are small (ENV 1.35e-4 vs 1.53e-4; L1 0.013 vs 0.014). This gives AV-MSF an oracle advantage that the KNN, DiffSound, and SonicGauss baselines do not receive, so the reported SOTA margins cannot be distinguished from selection artifact. Please select variants and hyperparameters on a held-out validation split, or report each variant separately and apply a fixed selection rule, and then compute all test metrics once.
- [Sec. 3.1 / Supp. B] The spatial-damping variant that can be selected in Supp. B is never defined. Sec. 3.1 only mentions that damping is 'optionally learnable as a spatially varying parameter,' but neither the main text nor Supp. A gives an equation, parameterization, initialization, or regularization for a spatially varying d_i(x). Since the comparison in Table 1 may be produced by this variant for some objects, the reader cannot reproduce the method or understand how model capacity changes across the selected variants. Please specify the spatial-damping parameterization and how it relates to the global damping extracted in Eq. (5).
- [Sec. 3.4 / Table 1] The modal parameter extraction is underspecified. Eq. (5) fits damping and gain for each candidate mode, but the text does not say how the number of modes N is chosen per object, how candidate peaks are selected across STFT bins, or how 'frequencies that consistently appear across recordings' is operationalized. The representation's capacity, and therefore the comparison with DiffSound and SonicGauss, depends directly on N and on the mode-selection rule. Please state the selection criterion (e.g., energy threshold, minimum number of recordings) and whether N is fixed or tuned; if tuned, the same validation-protocol concern as above applies.
- [Table 1 / Table 3] The main quantitative claim is based on aggregate means without any measure of variance or statistical significance. On ObjectFolder Real, the L1 difference between AV-MSF (0.013) and KNN (0.014) is small in absolute terms, and the non-symmetric subset in Table 3 shows a similarly small margin (0.0110 vs 0.0135). Please report per-object mean and median and a paired significance test, or otherwise justify why the aggregate means are robust under the current selection protocol.
minor comments (6)
- [Sec. 3.2] Eq. (4) is introduced by 'Following Eq. (20),' but Eq. (20) appears only in Supp. A.2; please refer to Eq. (3) in the main text or move the relevant equation to the main text.
- [Sec. 3.5] The clustering of Gaussian centers into K spatial groups is described as using 3D Euclidean distance, but the algorithm is not specified; please state whether this is k-means, its initialization, and how K is chosen beyond the range {128, 256, 512} in Supp. B.
- [Table 5 / Supp. D.2] The 'Generation' baseline in Table 5 is not defined in the main text; please describe it in the main text or at least refer explicitly to Supp. D.2 where the metric setup is given.
- [Supp. C.4 / Table 7] The few-shot study reports only L1; please report the other rendering metrics (L1 Log, ENV, CDPAM) so that the few-shot generalization claim can be assessed consistently with Table 1.
- [Sec. 5] The statement that 'existing real-world object impact sound datasets contain only objects with uniform materials' is an important scope limitation; consider stating it in the abstract or introduction as well.
- [Fig. 3] The spectrogram figures lack axis labels and units (time, frequency, and amplitude scale); please add them for interpretability.
Circularity Check
Partial circularity: the final model variant and hyperparameters are selected on the ENV metric that Table 1 then reports as the method's outcome (Supp. B), making the ENV SOTA margin an oracle selection; the modal-synthesis derivation itself is otherwise self-contained.
-
fitted input called prediction
[Supplementary Section B (Implementation Details); Table 1 (novel-position impact sound rendering)]
"For each object, we run both the single-damping and spatial-damping variants, and choose the best model based on the ENV metric."
ENV is one of the four metrics reported in Table 1 on the held-out evaluation split, and the same Supplementary paragraph selects learning rate, epoch count, cutoff weight, and cluster number from ranges. Selecting the final model by the same ENV metric that is then reported as the method's result means the reported ENV value is the minimum over the searched variants rather than an independent prediction of the representation. This is the fitted-input-called-prediction pattern: the discrete model choice is fit to the test metric, and the resulting ENV is then presented as evidence of state-of-the-art rendering.
full rationale
The core derivation is not circular. Equation (4) defines the impact sound as a sum of damped sinusoids plus a filtered-noise residual; the modal frequencies and dampings are extracted from the training recordings and refined, and the spatial gain field is trained with a warm-up loss against extracted gains plus an end-to-end multi-scale STFT loss on those same training recordings. Evaluation is performed at farthest-point-sampled held-out contact locations, so novel-position rendering is a genuine generalization test, not a reconstruction of the training targets. The physical assumptions (linear modal analysis, position-invariant damping in the base variant) are stated explicitly as assumptions rather than smuggled in as conclusions. The paper also compares against external or pretrained baselines on public datasets; the authors' co-authorship of some of those datasets and baselines is not load-bearing self-citation because the datasets are public and the comparisons are empirically grounded. The one load-bearing circularity is the model-selection rule in Supplementary Section B: choosing between the single-damping and spatial-damping variants, and selecting hyperparameters, by the ENV metric that Table 1 then reports as the method's outcome makes the ENV comparison an oracle selection rather than an honest prediction. This is a partial circularity and the score is 6; the remaining metrics and the representation's derivation retain independent content, and the issue is fixable by pre-registering a validation split or reporting each variant separately.
Assumptions & free parameters
free parameters (8)
- Number of modes N =
Per object, selected by thresholding peak consistency across recordings
- Number of clusters K for region descriptors =
Per object from {128, 256, 512}
- Modal frequencies {f_i} =
Extracted from training recordings, then optimized end-to-end
- Modal dampings {d_i} =
Extracted and fine-tuned, or replaced by a spatial-damping variant
- Residual noise magnitudes {m_i} =
Initialized from quiet segments, then optimized
- Damping variant (global vs spatial) =
Selected per object based on ENV metric
- Neural field weights (attention MLP) =
Optimized per object
- Training hyperparameters (learning rate, epochs, cutoff weight) =
Selected per object from small discrete sets
assumptions (5)
- domain assumption The impact sound of an object is modeled as a sum of N damped modal vibrations with global frequencies and dampings, plus a filtered-noise residual (Eq. 4).
- domain assumption Modal frequencies and dampings are position-invariant, with only gains varying spatially (damping optionally learnable in a variant).
- domain assumption DINOv2 visual features, lifted to 3D and symmetry-aligned, are a strong prior for predicting modal gains at novel locations.
- ad hoc to paper A static filtered-noise residual captures unmodeled environmental effects such as low-frequency background noise and contact-force variation.
- ad hoc to paper Material-parameter editing scales modal frequencies and dampings while leaving mode shapes unchanged, so gains rescale by a frequency ratio (Supp. A.2).
Cite this review
Pith. "Pith review of Objects as Audio-Visual Modal Sound Fields." pith.science (2026). https://pith.science/paper/UEN7XH6Q
@misc{pith2026260805145,
author = {Pith},
title = {Pith review of: Objects as Audio-Visual Modal Sound Fields},
year = {2026},
howpublished = {\url{https://pith.science/paper/UEN7XH6Q}},
note = {Machine review of arXiv:2608.05145}
}
read the original abstract
While modern 3D reconstruction excels at modeling object geometry and appearance, it largely ignores the rich acoustic cues revealed through physical interaction. Object impact sounds convey material, stiffness, and structural properties that complement vision, yet existing impact sound modeling approaches either rely on expensive physics-based simulation or require large datasets to generalize in a purely data-driven manner. We introduce Audio-Visual Modal Sound Field (AV-MSF), a novel object-level acoustic representation reconstructed from multi-view images and only a few impact sound recordings. AV-MSF builds on 3D Gaussian Splatting integrated with dense 3D visual feature to provide a strong geometry-aware prior, and represents the impact sound field using compact, physically meaningful modal parameters, enabling robust few-shot reconstruction. Experiments on two real-world datasets show that AV-MSF achieves state-of-the-art impact sound rendering, outperforming both physics-based and data-driven baselines. Furthermore, we demonstrate downstream applications enabled by our representation, including contact localization and object sound editing.
Figures
Figures from the paper (6 more)
Reference graph
Works this paper leans on
-
[1]
In: ICCV (2021)
Barron, J.T., Mildenhall, B., Tancik, M., Hedman, P., Martin-Brualla, R., Srini- vasan, P.P.: Mip-nerf: A multiscale representation for anti-aliasing neural radiance fields. In: ICCV (2021)
2021
-
[2]
Clarke, S., Gao, R., Wang, M., Rau, M., Xu, J., Wang, J.H., James, D.L., Wu, J.: Realimpact: A dataset of impact sound fields for real objects. In: CVPR (2023)
work page 2023
-
[3]
Clarke, S., Heravi, N., Rau, M., Gao, R., Wu, J., James, D., Bohg, J.: Diffimpact: Differentiable rendering and identification of impact sounds. In: CoRL (2021)
work page 2021
-
[4]
Clarke, S., Wistreich, S., Ze, Y., Wu, J.: X-capture: An open-source portable device for multi-sensory learning. In: ICCV (2025)
work page 2025
-
[5]
Corbett, R., van den Doel, K., Lloyd, J.E., Heidrich, W.: Timbrefields: 3d interac- tive sound models for real-time audio. Presence (2007)
work page 2007
- [6]
-
[7]
van den Doel, K., Kry, P.G., Pai, D.K.: Foleyautomatic: physically-based sound effects for interactive simulation and animation. In: SIGGRAPH (2001)
work page 2001
-
[8]
Dou, Y., Oh, W., Luo, Y., Loquercio, A., Owens, A.: Hearing hands: Generating sounds from physical interactions in 3d scenes. In: CVPR (2025)
work page 2025
Show all 48 references
-
[9]
In: CVPR (2024)
Dou, Y., Yang, F., Liu, Y., Loquercio, A., Owens, A.: Tactile-augmented radiance fields. In: CVPR (2024)
2024
-
[10]
CVPR (2025)
Fan, J., Luan, F., Yang, J., Hasan, M., Wang, B.: Rng: Relightable neural gaus- sians. CVPR (2025)
2025
-
[11]
In: CoRL (2021)
Gao, R., Chang, Y.Y., Mall, S., Fei-Fei, L., Wu, J.: Objectfolder: A dataset of objects with implicit visual, auditory, and tactile representations. In: CoRL (2021)
2021
-
[12]
In: CVPR (2023)
Gao, R., Dou, Y., Li, H., Agarwal, T., Bohg, J., Li, Y., Fei-Fei, L., Wu, J.: The objectfolder benchmark: Multisensory learning with neural and real objects. In: CVPR (2023)
2023
-
[13]
In: CVPR (2022)
Gao, R., Si, Z., Chang, Y.Y., Clarke, S., Bohg, J., Fei-Fei, L., Yuan, W., Wu, J.: Objectfolder 2.0: A multisensory object dataset for sim2real transfer. In: CVPR (2022)
2022
-
[14]
In: ICCV (2007)
Goesele, M., Snavely, N., Curless, B., Hoppe, H., Seitz, S.M.: Multi-view stereo for community photo collections. In: ICCV (2007)
2007
-
[15]
In: CVPR (2024)
Guédon, A., Lepetit, V.: Sugar: Surface-aligned gaussian splatting for efficient 3d mesh reconstruction and high-quality mesh rendering. In: CVPR (2024)
2024
-
[16]
In: CoRL (2025)
Higuera, C., Sharma, A., Fan, T., Bodduluri, C.K., Boots, B., Kaess, M., Lambeta, M., Wu, T., Liu, Z., Hogan, F.R., et al.: Tactile beyond pixels: Multisensory touch representations for robot manipulation. In: CoRL (2025)
2025
-
[17]
In: SIGGRAPH (2024)
Huang, B., Yu, Z., Chen, A., Geiger, A., Gao, S.: 2d gaussian splatting for geo- metrically accurate radiance fields. In: SIGGRAPH (2024)
2024
-
[18]
In: ACM SIGGRAPH 2016 Courses (2016)
James, D.L., Langlois, T.R., Mehra, R., Zheng, C.: Physically based sound for computer animation and virtual environments. In: ACM SIGGRAPH 2016 Courses (2016)
2016
-
[19]
In: SIGGRAPH (2024)
Jin, X., Xu, C., Gao, R., Wu, J., Wang, G., Li, S.: Diffsound: Differentiable modal sound rendering and inverse rendering for diverse inference tasks. In: SIGGRAPH (2024)
2024
-
[20]
TOG (2023)
Kerbl, B., Kopanas, G., Leimkuehler, T., Drettakis, G.: 3d gaussian splatting for real-time radiance field rendering. TOG (2023)
2023
-
[21]
RAL (2025) Objects as Audio-Visual Modal Sound Fields 17
Lee, M., Yoo, U., Oh, J., Ichnowski, J., Kantor, G., Kroemer, O.: Sonicboom: Contact localization using array of microphones. RAL (2025) Objects as Audio-Visual Modal Sound Fields 17
2025
-
[22]
In: SIGGRAPH (2000)
Levoy, M., Pulli, K., Curless, B., Rusinkiewicz, S., Koller, D., Pereira, L., Ginz- ton, M., Anderson, S., Davis, J., Ginsberg, J., Shade, J., Fulk, D.: The digital michelangelo project: 3d scanning of large statues. In: SIGGRAPH (2000)
2000
-
[23]
In: CoRL (2022)
Li, H., Zhang, Y., Zhu, J., Wang, S., Lee, A.M., Xu, H., Adelson, E., Li, F.F., Gao, R., Wu, J.: See, hear, and feel: Smart sensory fusion for robotic manipulation. In: CoRL (2022)
2022
-
[24]
In: ICML (2025)
Li, T., Huang, B., Zhuang, X., Jia, D., Chen, J., Wang, Y., Chen, Z., Anu- manchipalli, G., Wang, Y.: Sounding that object: Interactive object-aware image to audio generation. In: ICML (2025)
2025
-
[25]
Li, Y., Kim, H., Zhan, F., Qiu, R.Z., Ji, M., Shan, X., Zou, X., Liang, P., Pfister, H., Wang, X.: Visual acoustic fields (2025)
2025
-
[26]
In: ICRA (2015)
Luo, S., Mou, W., Althoefer, K., Liu, H.: Localizing the object contact through matching tactile features with visual map. In: ICRA (2015)
2015
-
[27]
In: ICASSP (2021)
Manocha, P., Jin, Z., Zhang, R., Finkelstein, A.: Cdpam: Contrastive learning for perceptual audio similarity. In: ICASSP (2021)
2021
-
[28]
In: ECCV (2020)
Mildenhall, B., Srinivasan, P.P., Tancik, M., Barron, J.T., Ramamoorthi, R., Ng, R.: Nerf: Representing scenes as neural radiance fields for view synthesis. In: ECCV (2020)
2020
-
[29]
In: ACM SIGGRAPH/Eurographics Symposium on Computer Ani- mation (2002)
O’Brien, J.F., Shen, C., Gatchalian, C.M.: Synthesizing sounds from rigid-body simulations. In: ACM SIGGRAPH/Eurographics Symposium on Computer Ani- mation (2002)
2002
-
[30]
TMLR (2024)
Oquab, M., Darcet, T., Moutakanni, T., Vo, H.V., Szafraniec, M., Khalidov, V., Fernandez, P., HAZIZA, D., Massa, F., El-Nouby, A., Assran, M., Ballas, N., Galuba, W., Howes, R., Huang, P.Y., Li, S.W., Misra, I., Rabbat, M., Sharma, V., Synnaeve, G., Xu, H., Jegou, H., Mairal, ...
2024
-
[31]
In: CVPR (2016)
Owens, A., Isola, P., McDermott, J., Torralba, A., Adelson, E.H., Freeman, W.T.: Visually indicated sounds. In: CVPR (2016)
2016
-
[32]
In: SIGGRAPH (2001)
Pai, D.K., Doel, K.v.d., James, D.L., Lang, J., Lloyd, J.E., Richmond, J.L., Yau, S.H.: Scanning physical interaction behavior of 3d objects. In: SIGGRAPH (2001)
2001
-
[33]
Pang, B., Xu, C., Ren, J., Wang, G., Li, S.: Vibraverse: A large-scale geometry- acoustics alignment dataset for physically-consistent multimodal learning (2025)
2025
-
[34]
Qi, Z., Yang, Y., Zhang, M., Xing, L., Wu, X., Wu, T., Lin, D., Liu, X., Wang, J., Zhao, H.: Tailor3d: Customized 3d assets editing and generation with dual-side images (2024)
2024
-
[35]
TOG (2013)
Ren, Z., Yeh, H., Lin, M.C.: Example-guided physically based modal sound syn- thesis. TOG (2013)
2013
-
[36]
arXiv preprint arXiv:2505.04621 (2025)
Richter-Powell, J., Torralba, A., Lorraine, J.: Score distillation sampling for audio: Source separation, synthesis, and beyond. arXiv preprint arXiv:2505.04621 (2025)
2025 arXiv
-
[37]
In: CVPR (2016)
Schönberger, J.L., Frahm, J.M.: Structure-from-motion revisited. In: CVPR (2016)
2016
-
[38]
In: ICCV (2023)
Sella, E., Fiebelman, G., Hedman, P., Averbuch-Elor, H.: Vox-e: Text-guided voxel editing of 3d objects. In: ICCV (2023)
2023
-
[39]
In: NeurIPS (2020)
Smith, E.J., Calandra, R., Romero, A., Gkioxari, G., Meger, D., Malik, J., Drozdzal, M.: 3D shape reconstruction from vision and touch. In: NeurIPS (2020)
2020
-
[40]
In: CVPR (2023)
Su, K., Qian, K., Shlizerman, E., Torralba, A., Gan, C.: Physics-driven diffusion models for impact sound synthesis from videos. In: CVPR (2023)
2023
-
[41]
In: ICRA (2022)
Suresh, S., Si, Z., Mangelson, J.G., Yuan, W., Kaess, M.: ShapeMap 3-D: Efficient shape mapping through dense touch and vision. In: ICRA (2022)
2022
-
[42]
In: ACMMM (2025) 18 Z
Wang, C., Li, H., Luo, Y.: Sonicgauss: Position-aware physical sound synthesis for 3d gaussian representations. In: ACMMM (2025) 18 Z. Shao et al
2025
-
[43]
In: NeurIPS (2021)
Wang, P., Liu, L., Liu, Y., Theobalt, C., Komura, T., Wang, W.: Neus: learning neural implicit surfaces by volume rendering for multi-view reconstruction. In: NeurIPS (2021)
2021
-
[44]
In: ICLR (2026)
Ye, J., Xie, S., Zhao, R., Wang, Z., Yan, H., Zu, W., Ma, L., Zhu, J.: NANO3d: A training-free approach for efficient 3d editing without masks. In: ICLR (2026)
2026
-
[45]
TMLR (2023)
Yu, H.X., Guo, M., Fathi, A., Chang, Y.Y., Chan, E.R., Gao, R., Funkhouser, T., Wu, J.: Learning object-centric neural scattering functions for free-viewpoint relighting and scene composition. TMLR (2023)
2023
-
[46]
TOG (2021)
Zhang, X., Srinivasan, P.P., Deng, B., Debevec, P., Freeman, W.T., Barron, J.T.: Nerfactor: neural factorization of shape and reflectance under an unknown illumi- nation. TOG (2021)
2021
-
[47]
In: NeurIPS (2017)
Zhang, Z., Li, Q., Huang, Z., Wu, J., Tenenbaum, J.B., Freeman, W.T.: Shape and material from sound. In: NeurIPS (2017)
2017
-
[48]
wood to ceramic
Zhao, X., Srinivasan, P.P., Verbin, D., Park, K., Martin-Brualla, R., Henzler, P.: Illuminerf: 3d relighting without inverse rendering. In: NeurIPS (2024) Objects as Audio-Visual Modal Sound Fields 19 In this supplementary material, we first expand on our method formulations i...
2024
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.