REVIEW 2 major objections 6 minor 50 references
Efficient Neural Video Representation with Temporally Coherent Modulation
T0 review · 2 major / 6 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read NVTM represents a video as flow-aligned 2D grids, letting temporally matching pixels share one modulation code for faster, more parameter-efficient encoding.
desk verdict Real contribution on dynamic video INR; speed claim needs a caveat about RAFT precomputation and Eq. (3) has a minor formal gap. 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 central object is the temporally coherent modulation latent: a single vector $z_{xyt}$ that modulates the base network and is shared by pixels the alignment flow judges to be the same scene content. The mechanism that creates it is the alignment flow network $F_H(t)$, a SIREN whose weights are produced by a hypernetwork over time; its output is scaled by $\log(t-t_k)$ to compensate for the temporal distance to the keyframe of a short group of frames (GOP). Equation (4), $(x_k,y_k) = (x,y) + \log(t-t_k)F_H(t)(x,y)$, warps each 3D coordinate to the keyframe's 2D coordinate, and Eq. (5) adaptively normalizes those coordinates before they look up the per-GOP 2D latent grid $G_k$. The grid lookup is what lets one latent serve many pixels; the adaptive normalization is what keeps grid cells from being wasted on sparse outlier regions.
What would settle it
Train NVTM on a synthetic dynamic video with known ground-truth optical flow, first with no occlusions and then with large occluded bands that force unrelated pixels into the same aligned grid cell. If the PSNR margin over NVP stays roughly 1.5 dB in both cases, the shared-latent mechanism is robust to broken correspondence; if the margin collapses when occlusions are added, the method's gain depends on flow accuracy exactly where the paper's weakest assumption says it does.
Extended reading notes
Core claim
On its own terms, NVTM establishes that the temporal redundancy in video can be removed from a parametric encoding by conditioning the coordinates, not by adding parameters. For each group of frames, an alignment flow network $F_H(t)$ predicts a displacement, and every 3D coordinate $(x,y,t)$ is mapped to a keyframe-time coordinate $(x_k,y_k) = (x,y) + \log(t-t_k) F_H(t)(x,y)$. The normalized coordinate indexes a 2D latent grid $G_k$, producing the modulation latent $z_{xyt} = G_k(x'_k,y'_k)$ that conditions the base network; because corresponding pixels land on the same grid cell, they share the latent. The reported consequences are a training-speed advantage of over 3 times versus NeRV-style methods and a parameter-efficiency advantage of 1.54 dB and 0.019 PSNR/LPIPS over NVP on UVG (Dynamic) with 10% fewer parameters, plus 1.84 dB and 0.013 on MCL-JCV (Dynamic). The same shared-latent mechanism is then shown to serve super-resolution, frame interpolation, and inpainting, and the GOP grid stack can be compressed with HEVC to reach bitrates competitive with standard codecs.
Load-bearing premise
The load-bearing premise is that the alignment flow correctly pairs the same scene point across frames; if it maps unrelated pixels to the same grid cell, one shared code encodes mismatched content, and the speed and parameter gains disappear.
Editorial extensions
If this is right
- At the 5-minute mark on UVG (Dynamic), NVTM already exceeds 29 dB PSNR while every NeRV-style baseline is still below 25 dB at 0.1 bpp, showing that fast encoding does not require giving up quality.
- Grid-type video INRs can be made parameter-efficient without losing their training speed: NVTM uses 10% fewer parameters than NVP and still gains 1.54 dB on UVG (Dynamic) and 1.84 dB on MCL-JCV (Dynamic) in PSNR.
- Because decoding is coordinate-based, one trained model supports spatial and temporal resampling, which the paper demonstrates as 2x super-resolution and 2x frame interpolation with PSNR and LPIPS gains over NVP and 3D ModSIREN.
- Video inpainting follows from the same shared-latent mechanism: masked areas are decoded from temporally corresponding visible pixels, as demonstrated on DAVIS2017 with random box masks.
- The per-GOP latent grids form a temporally coherent sequence, so compressing them with HEVC yields bitrate-distortion points comparable to H.264/HEVC and prior INR codecs while keeping the fast-encoding advantage.
Reading between the lines
- In principle, the same warped-coordinate shared-code mechanism should transfer to other parametric encodings such as hash grids or triplane features, where temporal redundancy is currently absorbed by adding more grid levels; this is an extension, not something the paper tests.
- The paper's own GOP-size ablation suggests a motion-energy-based GOP scheduler could widen the gains on mixed-motion footage; the authors note the possibility but do not implement it.
- On low-motion or occlusion-heavy footage, a hybrid that keeps a static grid for unreliable-correspondence regions could preserve the advantage; the paper's Beauty result marks the boundary where this would matter.
- If the HEVC-on-grid-stack compression result generalizes, the latent grids are temporally coherent in a codec-friendly sense, which could inform future INR codec designs beyond this architecture.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes NVTM, an implicit neural representation for video that groups temporally corresponding pixels via a learned alignment flow guided by RAFT optical flow, so that a shared modulation latent from per-GOP 2D grids can modulate a base SIREN network. The method is evaluated on dynamic subsets of UVG and MCL-JCV, where it reports faster encoding times and higher reconstruction quality than NVP and NeRV-style baselines, plus results on video compression, super resolution, frame interpolation, and inpainting. The central claims are empirical: a speed advantage of over 3x versus NeRV-style methods and parameter-efficiency gains of about 1.5-1.8 dB over NVP on dynamic sequences.
Significance. If the empirical claims hold, NVTM is a meaningful advance in video INR: it is the first grid-type parametric encoding that explicitly removes temporal redundancy by coordinate alignment, achieving both faster training and better parameter efficiency on dynamic HD content than prior grid-based methods. The paper is unusually thorough: it includes ablations over GOP size, neighbor set, adaptive normalization, and static features; reports random-seed stability; provides sequence-level tables; and extends to multiple downstream tasks. There is no equation-level circularity, since the alignment network is trained against an external pretrained RAFT system and reconstruction is measured on held-out coordinates. The main reservations are that the headline speed comparison omits the cost of RAFT flow precomputation, and that the formal definition of the flow scaling in Eq. (3) is incomplete.
major comments (2)
- [Section 4.2 and Table 2] The speed comparison is defined as training time only (Table 2 caption: 'i.e., the training time'), but NVTM requires RAFT optical flow as auxiliary supervision for the alignment flow network (Section 3.2, Section 4.1). The paper never reports the wall-clock cost of computing RAFT flows on 600-frame HD UVG sequences or 100-frame MCL-JCV sequences, nor does it state whether such cost is included in the 'encoding time' values. If, as is typical, flow estimation takes a non-negligible fraction of the 1-minute or 5-minute training intervals, the abstract's 'fastest encoding speed' and 'speed increase of over 3 times' would not describe the end-to-end encoding pipeline. The paper should either include the RAFT precomputation time in the speed comparison and re-evaluate the 3x claim, or explicitly qualify all speed statements as training-time-only and justify that the excluded preprocessing is acceptable in the intended deployment scenario.
- [Section 3.2, Eq. (3)] Eq. (3), Flow_{t->tk}(x,y) = log(t - tk) F_H(t)(x,y), is undefined at the keyframe t = tk because log(0) is undefined. Since the keyframe is defined as the first frame of each GOP and every pixel in that frame has t = tk, the paper must specify how the alignment flow and the aligned coordinate (x_k, y_k) are computed for the keyframe (e.g., by setting flow to zero). Additionally, the domain of t is not stated: if t is a normalized time in [0,1], log(t-tk) is negative for frames immediately after the keyframe, reversing the sign of the learned flow; if t is an integer frame index, log(t-tk)=0 at t=tk+1, which would force zero flow for the adjacent frame and contradict the intended temporal alignment. This is a load-bearing formal gap in the method definition and needs clarification.
minor comments (6)
- [Section 5 and Section E.3] The conclusion's statement that 'NVTM outperforms existing methods of implicit neural video representation on various video related tasks' is too broad: Table 16 shows NVP outperforms NVTM on the Beauty sequence (36.24 vs 35.63 PSNR). The claim should be scoped to dynamic video sequences, in line with the datasets actually used.
- [Table 17] In the 'Output type' column, 'Pxiel' should be 'Pixel'.
- [Section 4.6] The sentence 'we analysis on zxyz corresponding to pixels' should be 'we analyze the modulation latent z_xyz corresponding to pixels.' Also, the notation z_xyz appears in the analysis but z_xyt is used in the methodology; this inconsistency should be fixed.
- [Figure 4(b)] The caption says 'random-valued flow in a notated scale of source video resolution'; it is unclear what 'notated scale' means and how the random flow was generated. Please clarify.
- [Eq. (5)] The Clip operator is not defined; it should state whether clipping is to the closed interval [0,1] and whether the value is clamped after normalization.
- [Various] There are several typos and grammatical issues, e.g., 'demostrate' in Section 2.2, 'a 10-' and 'a diminishing duration of the entire iterations' in Section B.3, and Figure 1's '1 minutes' should be '1 minute'.
Circularity Check
The central speed and quality claims are externally benchmarked; the only minor circularity is a self-consistency analysis that restates the construction.
-
self definitional
[This occurs in Section 4.6, 'Temporal Consistency Modulation' analysis, relying on Eq. (6) and the Figure 2 caption.]
"We can observe that the latent values derived from similar pixel areas across different frames are represented as similar embeddings. These findings validate our intention that our network produces identical modulation latents from similar pixels in consecutive frames."
By Eq. (6), the latent is zxyt = concat{G_{k+p}(x'_{k+p}, y'_{k+p}) | p in P}, where (x'_k, y'_k) are the aligned 2D coordinates. The Figure 2 caption states that temporally correlated coordinates are mapped to the same 2D coordinate, 'thereby ensuring they share the same modulation latent representation.' Thus the observation that corresponding pixels yield similar or identical latents is entailed by the definition of the latent, not an independent empirical validation. This is a minor self-consistency check and is not the source of the paper's speed or reconstruction claims, which are measured on held-out reconstruction and benchmarked against external baselines.
full rationale
No equation-level circularity is present in the main derivation chain. The alignment flow is trained with auxiliary supervision from RAFT, an external pretrained system, and the resulting model is evaluated on reconstruction, compression, super-resolution, interpolation, and inpainting tasks against external baselines; none of these predictions is defined in terms of the quantity it claims to predict. The only circularity found is the Section 4.6 t-SNE 'validation,' which restates the construction that aligned coordinates share a grid latent. The paper also discloses its limitation on low-motion sequences (Appendix E.3), which is consistent with a genuine empirical claim rather than a tautology. The omission of RAFT precomputation time from the Table 2 encoding-speed comparison is an evaluation-scope caveat, not a circularity.
Assumptions & free parameters
free parameters (5)
- GOP size n =
10
- Adaptive normalization density threshold r_th =
0.5
- Auxiliary loss weight w_aux =
0.5
- Neighbor index set P =
{0,1}
- Log scale factor in Eq. (3) =
not specified
assumptions (4)
- domain assumption RAFT optical flow is a sufficiently accurate proxy for pixel correspondences across video frames.
- domain assumption Corresponding pixels across frames are similar enough in appearance that sharing one modulation latent improves reconstruction.
- domain assumption A lightweight hyper-SIREN can represent the time-dependent alignment flow needed for each GOP.
- standard math Multi-resolution 2D grids (DenseGrid in tiny-cuda-nn) are valid parametric encoders for the aligned latent field.
invented entities (1)
-
Temporally coherent modulation latent z_xyt
Cite this review
Pith. "Pith review of Efficient Neural Video Representation with Temporally Coherent Modulation." pith.science (2026). https://pith.science/paper/JRADNJOW
@misc{pith2026250500335,
author = {Pith},
title = {Pith review of: Efficient Neural Video Representation with Temporally Coherent Modulation},
year = {2026},
howpublished = {\url{https://pith.science/paper/JRADNJOW}},
note = {Machine review of arXiv:2505.00335}
}
read the original abstract
Implicit neural representations (INR) has found successful applications across diverse domains. To employ INR in real-life, it is important to speed up training. In the field of INR for video applications, the state-of-the-art approach employs grid-type parametric encoding and successfully achieves a faster encoding speed in comparison to its predecessors. However, the grid usage, which does not consider the video's dynamic nature, leads to redundant use of trainable parameters. As a result, it has significantly lower parameter efficiency and higher bitrate compared to NeRV-style methods that do not use a parametric encoding. To address the problem, we propose Neural Video representation with Temporally coherent Modulation (NVTM), a novel framework that can capture dynamic characteristics of video. By decomposing the spatio-temporal 3D video data into a set of 2D grids with flow information, NVTM enables learning video representation rapidly and uses parameter efficiently. Our framework enables to process temporally corresponding pixels at once, resulting in the fastest encoding speed for a reasonable video quality, especially when compared to the NeRV-style method, with a speed increase of over 3 times. Also, it remarks an average of 1.54dB/0.019 improvements in PSNR/LPIPS on UVG (Dynamic) (even with 10% fewer parameters) and an average of 1.84dB/0.013 improvements in PSNR/LPIPS on MCL-JCV (Dynamic), compared to previous grid-type works. By expanding this to compression tasks, we demonstrate comparable performance to video compression standards (H.264, HEVC) and recent INR approaches for video compression. Additionally, we perform extensive experiments demonstrating the superior performance of our algorithm across diverse tasks, encompassing super resolution, frame interpolation and video inpainting. Project page is https://sujiikim.github.io/NVTM/.
Figures
Figures from the paper (10 more)
Reference graph
Works this paper leans on
-
[1]
Andersson, P., Nilsson, J., Akenine-M¨ oller, T., Oskarsson, M.,˚Astr¨ om, K., Fairchild, M.D.: Flip: A difference evaluator for alternating images. Proc. ACM Comput. Graph. Interact. Tech. 3(2), 15–1 (2020)
work page 2020
-
[2]
In: 2023 IEEE International Conference on Image Processing (ICIP)
Bai, Y., Dong, C., Wang, C., Yuan, C.: Ps-nerv: Patch-wise stylized neural representations for videos. In: 2023 IEEE International Conference on Image Processing (ICIP). pp. 41–45. IEEE (2023)
work page 2023
-
[3]
arXiv preprint arXiv: 2302.03130 (2023)
Bauer, M., Dupont, E., Brock, A., Rosenbaum, D., Schwarz, J.R., Kim, H.: Spatial functa: Scaling functa to imagenet classification and generation. arXiv preprint arXiv: 2302.03130 (2023)
arXiv 2023
-
[4]
Chabra, R., Lenssen, J.E., Ilg, E., Schmidt, T., Straub, J., Lovegrove, S., Newcombe, R.: Deep local shapes: Learning local sdf priors for detailed 3d reconstruction. In: Computer Vision–ECCV 2020: 16th European Confer- ence, Glasgow, UK, August 23–28, 2020, Proceedings, Part XXIX 16. pp. 608–625. Springer (2020)
work page 2020
-
[5]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (2023)
Chen, H., Gwilliam, M., Lim, S.N., Shrivastava, A.: Hnerv: A hybrid neural representation for videos. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (2023)
work page 2023
-
[6]
Advances in Neural Information Processing Systems 34, 21557–21568 (2021)
Chen, H., He, B., Wang, H., Ren, Y., Lim, S.N., Shrivastava, A.: Nerv: Neu- ral representations for videos. Advances in Neural Information Processing Systems 34, 21557–21568 (2021)
work page 2021
-
[7]
In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition
Chen, Y., Liu, S., Wang, X.: Learning continuous image representation with local implicit image function. In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. pp. 8628–8638 (2021)
work page 2021
-
[8]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Chen, Z., Chen, Y., Liu, J., Xu, X., Goel, V., Wang, Z., Shi, H., Wang, X.: Videoinr: Learning video implicit neural representation for continuous space-time super-resolution. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 2047–2057 (2022)
work page 2022
Show all 50 references
-
[9]
In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition
Chibane, J., Alldieck, T., Pons-Moll, G.: Implicit functions in feature space for 3d shape reconstruction and completion. In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. pp. 6970–6981 (2020)
2020
-
[10]
ACM Transactions on Graphics (TOG) 39(4), 75–1 (2020)
Chu, M., Xie, Y., Mayer, J., Leal-Taix´ e, L., Thuerey, N.: Learning tem- poral coherence via self-supervision for gan-based video generation. ACM Transactions on Graphics (TOG) 39(4), 75–1 (2020)
2020
-
[11]
In: Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision
Deng, C.L., Tartaglione, E.: Compressing explicit voxel grid representations: fast nerfs become also small. In: Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision. pp. 1236–1245 (2023)
2023
-
[12]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pat- tern Recognition
Dong, Z., Guo, C., Song, J., Chen, X., Geiger, A., Hilliges, O.: Pina: Learn- ing a personalized implicit neural avatar from a single rgb-d video sequence. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pat- tern Recognition. pp. 20470–20480 (2022) 16 S. Shi...
2022
-
[13]
Transactions on Machine Learning Research 2022(11) (2022)
Dupont, E., Loya, H., Alizadeh, M., Golinski, A., Teh, Y., Doucet, A.: Coin++: neural compression across modalities. Transactions on Machine Learning Research 2022(11) (2022)
2022
-
[14]
In: Neural Compression: From Information Theory to Applications–Workshop@ ICLR 2021 (2021)
Dupont, E., Golinski, A., Alizadeh, M., Teh, Y.W., Doucet, A.: Coin: Com- pression with implicit neural representations. In: Neural Compression: From Information Theory to Applications–Workshop@ ICLR 2021 (2021)
2021
-
[15]
In: International Conference on Machine Learning
Dupont, E., Kim, H., Eslami, S.A., Rezende, D.J., Rosenbaum, D.: From data to functa: Your data point is a function and you can treat it like one. In: International Conference on Machine Learning. pp. 5694–5725. PMLR (2022)
2022
-
[16]
In: Proceedings of the AAAI Conference on Artificial Intelligence
Fang, S., Xu, W., Wang, H., Yang, Y., Wang, Y., Zhou, S.: One is all: Bridg- ing the gap between neural radiance fields architectures with progressive volume distillation. In: Proceedings of the AAAI Conference on Artificial Intelligence. vol. 37, pp. 597–605 (2023)
2023
-
[17]
In: Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision
Figueirˆ edo, P., Paliwal, A., Kalantari, N.K.: Frame interpolation for dy- namic scenes with implicit flow encoding. In: Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision. pp. 218–228 (2023)
2023
-
[18]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Fridovich-Keil, S., Yu, A., Tancik, M., Chen, Q., Recht, B., Kanazawa, A.: Plenoxels: Radiance fields without neural networks. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 5501–5510 (2022)
2022
-
[19]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Genova, K., Cole, F., Sud, A., Sarna, A., Funkhouser, T.: Local deep implicit functions for 3d shape. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 4857–4866 (2020)
2020
-
[20]
In: Proceedings of the IEEE/CVF International Conference on Computer Vision
Girish, S., Shrivastava, A., Gupta, K.: Shacira: Scalable hash-grid compres- sion for implicit neural representations. In: Proceedings of the IEEE/CVF International Conference on Computer Vision. pp. 17513–17524 (2023)
2023
-
[21]
In: Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition
Gomes, C., Azevedo, R., Schroers, C.: Video compression with entropy- constrained neural representations. In: Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition. pp. 18497–18506 (2023)
2023
-
[22]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
He, B., Yang, X., Wang, H., Wu, Z., Chen, H., Huang, S., Ren, Y., Lim, S.N., Shrivastava, A.: Towards scalable neural representation for diverse videos. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 6132–6142 (2023)
2023
-
[23]
Networks 910(37), 5 (1999)
Installations, T., Line, L.: Subjective video quality assessment methods for multimedia applications. Networks 910(37), 5 (1999)
1999
-
[24]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Jiang, C., Sud, A., Makadia, A., Huang, J., Nießner, M., Funkhouser, T., et al.: Local implicit grid representations for 3d scenes. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 6001–6010 (2020)
2020
-
[25]
arXiv preprint arXiv:2210.06823 (2022)
Kim, S., Yu, S., Lee, J., Shin, J.: Scalable neural video representations with learnable positional features. arXiv preprint arXiv:2210.06823 (2022)
2022 arXiv
-
[26]
In: Proceedings of the 31st ACM International Conference on Multimedia
Lee, J.C., Rho, D., Ko, J.H., Park, E.: Ffnerv: Flow-guided frame-wise neu- ral representations for videos. In: Proceedings of the 31st ACM International Conference on Multimedia. pp. 7859–7870 (2023) Efficient Neural Video Representation with Temporally Coherent Modulation 17
2023
-
[27]
In: Com- puter Vision–ECCV 2022: 17th European Conference, Tel Aviv, Israel, Oc- tober 23–27, 2022, Proceedings, Part XXXV
Li, Z., Wang, M., Pi, H., Xu, K., Mei, J., Liu, Y.: E-nerv: Expedite neural video representation with disentangled spatial-temporal context. In: Com- puter Vision–ECCV 2022: 17th European Conference, Tel Aviv, Israel, Oc- tober 23–27, 2022, Proceedings, Part XXXV. pp. 267–284....
2022
-
[28]
Advances in Neural Information Processing Systems33, 15651–15663 (2020)
Liu, L., Gu, J., Zaw Lin, K., Chua, T.S., Theobalt, C.: Neural sparse voxel fields. Advances in Neural Information Processing Systems33, 15651–15663 (2020)
2020
-
[29]
arXiv preprint arXiv:1711.05101 (2017)
Loshchilov, I., Hutter, F.: Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101 (2017)
2017 arXiv
-
[30]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (2023)
Maiya, S.R., Girish, S., Ehrlich, M., Wang, H., Lee, K.S., Poirson, P., Wu, P., Wang, C., Shrivastava, A.: Nirvana: Neural implicit representations of videos with adaptive networks and autoregressive patch-wise modeling. In: Proceedings of the IEEE/CVF Conference on Computer V...
2023
-
[31]
In: Proceedings of the IEEE/CVF International Conference on Computer Vision
Mehta, I., Gharbi, M., Barnes, C., Shechtman, E., Ramamoorthi, R., Chan- draker, M.: Modulated periodic activations for generalizable local functional representations. In: Proceedings of the IEEE/CVF International Conference on Computer Vision. pp. 14214–14223 (2021)
2021
-
[32]
In: Proceedings of the 11th ACM Multimedia Systems Conference
Mercat, A., Viitanen, M., Vanne, J.: Uvg dataset: 50/120fps 4k sequences for video codec analysis and development. In: Proceedings of the 11th ACM Multimedia Systems Conference. pp. 297–302 (2020)
2020
-
[33]
In: European conference on computer vision (2020)
Mildenhall, B., Srinivasan, P., Tancik, M., Barron, J., Ramamoorthi, R., Ng, R.: Nerf: Representing scenes as neural radiance fields for view synthesis. In: European conference on computer vision (2020)
2020
-
[34]
M¨ uller, T.: tiny-cuda-nn (4 2021), https://github.com/NVlabs/ tiny-cuda-nn
2021
-
[35]
ACM Transactions on Graphics (ToG) 41(4), 1–15 (2022)
M¨ uller, T., Evans, A., Schied, C., Keller, A.: Instant neural graphics primi- tives with a multiresolution hash encoding. ACM Transactions on Graphics (ToG) 41(4), 1–15 (2022)
2022
-
[36]
arXiv:1704.00675 (2017)
Pont-Tuset, J., Perazzi, F., Caelles, S., Arbel´ aez, P., Sorkine-Hornung, A., Van Gool, L.: The 2017 davis challenge on video object segmentation. arXiv:1704.00675 (2017)
2017 arXiv
-
[37]
In: Proceedings of the Asian Conference on Computer Vision
Rho, D., Cho, J., Ko, J.H., Park, E.: Neural residual flow fields for efficient video representations. In: Proceedings of the Asian Conference on Computer Vision. pp. 3447–3463 (2022)
2022
-
[38]
Advances in Neu- ral Information Processing Systems 33, 7462–7473 (2020)
Sitzmann, V., Martel, J., Bergman, A., Lindell, D., Wetzstein, G.: Implicit neural representations with periodic activation functions. Advances in Neu- ral Information Processing Systems 33, 7462–7473 (2020)
2020
-
[39]
Advances in Neural Information Processing Systems35, 8144– 8158 (2022)
Su, K., Chen, M., Shlizerman, E.: Inras: Implicit neural representation for audio scenes. Advances in Neural Information Processing Systems35, 8144– 8158 (2022)
2022
-
[40]
IEEE Transactions on circuits and systems for video technology 22(12), 1649–1668 (2012)
Sullivan, G.J., Ohm, J.R., Han, W.J., Wiegand, T.: Overview of the high efficiency video coding (hevc) standard. IEEE Transactions on circuits and systems for video technology 22(12), 1649–1668 (2012)
2012
-
[41]
arXiv preprint arXiv:2211.01839 (2022) 18 S
Szatkowski, F., Piczak, K.J., Spurek, P., Tabor, J., Trzci´ nski, T.: Hyper- sound: Generating implicit neural representations of audio signals with hy- pernetworks. arXiv preprint arXiv:2211.01839 (2022) 18 S. Shin, S. Kim, D. Oh
2022 arXiv
-
[42]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Takikawa, T., Litalien, J., Yin, K., Kreis, K., Loop, C., Nowrouzezahrai, D., Jacobson, A., McGuire, M., Fidler, S.: Neural geometric level of detail: Real- time rendering with implicit 3d shapes. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recogn...
2021
-
[43]
In: Computer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedings, Part II 16
Teed, Z., Deng, J.: Raft: Recurrent all-pairs field transforms for optical flow. In: Computer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedings, Part II 16. pp. 402–419. Springer (2020)
2020
-
[44]
Linux journal 2006(146), 10 (2006)
Tomar, S.: Converting video formats with ffmpeg. Linux journal 2006(146), 10 (2006)
2006
-
[45]
264/avc video quality assessment dataset
Wang, H., Gan, W., Hu, S., Lin, J.Y., Jin, L., Song, L., Wang, P., Kat- savounidis, I., Aaron, A., Kuo, C.C.J.: Mcl-jcv: a jnd-based h. 264/avc video quality assessment dataset. In: 2016 IEEE international conference on image processing (ICIP). pp. 1509–1513. IEEE (2016)
2016
-
[46]
264/avc video coding standard
Wiegand, T., Sullivan, G.J., Bjontegaard, G., Luthra, A.: Overview of the h. 264/avc video coding standard. IEEE Transactions on circuits and systems for video technology 13(7), 560–576 (2003)
2003
-
[47]
In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition
Yang, J., Zheng, W.S., Yang, Q., Chen, Y.C., Tian, Q.: Spatial-temporal graph convolutional network for video-based person re-identification. In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. pp. 3289–3299 (2020)
2020
-
[48]
In: Proceedings of the IEEE conference on computer vision and pattern recognition
Zhang, R., Isola, P., Efros, A.A., Shechtman, E., Wang, O.: The unreason- able effectiveness of deep features as a perceptual metric. In: Proceedings of the IEEE conference on computer vision and pattern recognition. pp. 586–595 (2018)
2018
-
[49]
bframes=0
Zhao, Q., Asif, M.S., Ma, Z.: Dnerv: Modeling inherent dynamics via dif- ference neural representation for videos. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 2031–2040 (2023) Efficient Neural Video Representation with Temporally ...
2023
-
[50]
bframes=0
reported with a different resolution and its code is unavailable, we only com- pared with HNeRV [5]. NVTM has large margins compared to HNeRV, except Jockey sequence. Table 14: Comparison of PSNR on frame interpolation result (×2) in UVG. Method Bosphorus Jockey ReadySetGo Yac...
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.