Pith. sign in

REVIEW 3 major objections 4 minor 3 cited by

Track4Gen: Teaching Video Diffusion Models to Track Points Improves Video Generation

T0 review · 3 major / 4 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read Point-tracking supervision on diffusion features reduces video appearance drift.

desk verdict Track4Gen has a genuinely new idea with a clean implementation, but the missing no-Lcorr control means the reported generation gains are not causally pinned to tracking supervision. read the letter →

arxiv 2412.06016 v3 pith:XIDZT3DH submitted 2024-12-08 cs.CV cs.AIcs.LG

classification cs.CVcs.AIcs.LG
keywords appearancedriftvideogenerationpointtrackingdiffusionmodelspatialcorrespondenceStabletracking-any-pointtemporalcoherence
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Appearance drift—objects in generated video gradually changing identity, morphing, or degrading—persists in diffusion video generators even as they improve, and the paper attributes this to missing spatial-tracking supervision in the feature space. Track4Gen adds a point-tracking objective to the diffusion loss, forcing the intermediate features of a pretrained video generator to encode where points move across frames. A trainable refiner module and a zero convolution inject these correspondence-aware features back into the generator, so the same network both generates video and tracks points. The paper reports that this reduces appearance drift on Stable Video Diffusion, improving subject consistency and temporal coherence without lowering standard video-quality scores, and that the resulting features also track points in real videos.

What carries the argument

The machinery is the pair of a trainable refiner module $R_\phi$ and a zero-convolution gate $\zeta_\psi$ attached to the upsampler layer of the third decoder block of a Stable Video Diffusion U-Net. $R_\phi$, eight stacked 2D convolution layers initialized as identity, transforms raw diffusion features $h^{1:N}$ into refined features $\tilde{h}^{1:N}$; the correspondence loss computes cosine-similarity cost volumes between a query point's feature and a target frame's feature map, applies a differentiable soft-argmax over a radius-limited window to predict the target position, and penalizes prediction error with a Huber loss. The refined features are fed into the next U-Net block only through $\zeta_\psi$, with gradients detached before the refiner, so $L_\text{corr}$ trains the refiner and the temporal transformer blocks while the diffusion loss continues to train the whole generator. This design is what lets tracking supervision reshape the feature space without destroying the pretrained generation prior.

What would settle it

Train Track4Gen with the same architecture but replace the correspondence labels by random point pairs within each video; if appearance-drift scores on VBench stay high and tracking accuracy stays low, the claimed causal role of the tracking supervision would be refuted.

Watch

Extended reading notes

Core claim

Track4Gen's central claim is that explicit spatial-correspondence supervision at the feature level is the missing ingredient for temporally consistent video generation. The paper demonstrates this by training a single network to minimize both the video diffusion denoising loss and a correspondence loss: raw U-Net features from the third decoder block's upsampler layer are projected by an identity-initialized refiner into a correspondence-rich space, cosine-similarity cost volumes with soft-argmax predict point tracks, and a Huber loss supervises those predictions against pseudo-ground-truth trajectories. The refined features are also routed back into the generation backbone through a zero convolution, so the generation path inherits spatial awareness while preserving the pretrained model's prior. On VBench, DAVIS, and BADJA, the paper finds meaningfully improved subject consistency, reduced flickering, and tracking accuracy that approaches dedicated optical-flow chaining, and concludes that video generation and point tracking can be unified in one architecture.

Load-bearing premise

The load-bearing premise is that the pseudo-ground-truth point trajectories—generated by chaining optical-flow estimates from a small set of 567 short video clips and keeping only cycle-consistent matches—are accurate and diverse enough to teach a generalizable spatial-correspondence prior that transfers to other videos.

Editorial extensions

If this is right

  • Video generators trained this way should keep a subject's identity stable across many frames, eliminating the object-mutation and object-replacement failures typical of baseline Stable Video Diffusion.
  • The same checkpoint can double as a point tracker: zero-shot feature matching with Track4Gen features approaches RAFT optical-flow chaining accuracy on DAVIS and BADJA.
  • Plugging Track4Gen features into a test-time-optimization tracker yields long-term tracking accuracy comparable to dedicated supervised trackers.
  • Because only a small refiner and the temporal transformer blocks are finetuned, the recipe should transfer to other U-Net video diffusion models with minimal changes.
  • Standard generation-quality metrics (FID, FVD, motion smoothness, image quality) do not degrade, so the drift reduction is not bought at the cost of overall video fidelity.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • If the causal mechanism is the tracking supervision itself, then scaling the 567-clip training set with automatically annotated real videos should further reduce drift; the small data scale makes this an untested consequence of the paper's hypothesis.
  • The same refiner-plus-tracking-loss design should apply to transformer-based (DiT) video generators, but the paper only tests U-Net architectures, so this extension is speculative.
  • The paper's acknowledged trade-off of reduced camera motion suggests an extension that supervises global motion separately from point-level correspondences could recover dynamism without sacrificing identity stability.
  • Because feature tracking still fails on fast motion, occlusions, and semantically similar objects, adding an explicit occlusion-prediction term to the correspondence loss is a natural next step and is flagged by the authors as future work.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 4 minor

Summary. The paper proposes Track4Gen, a method to add point-tracking supervision to a video diffusion model (Stable Video Diffusion) in order to reduce appearance drift. The method attaches a trainable refiner module to a selected U-Net block, supervises the refined features with a correspondence loss computed against RAFT-generated point tracks, and injects the refined features back into the backbone through a zero convolution initialized to identity. The authors claim that this joint training unifies video generation and point tracking, and report quantitative improvements on VBench metrics, FID/FVD, and user studies, as well as improved zero-shot feature-based tracking on TAP-Vid benchmarks.

Significance. If the central causal claim is correct, Track4Gen would be a valuable and simple recipe for improving spatial coherence of video generators by adding correspondence supervision. The paper is clearly written, the method is well motivated by a feature analysis (Sec. 3.2), and the evaluation is broad, including tracking benchmarks and a user study. The authors are honest about limitations (reduced camera motion, failure cases). However, the headline claim that tracking supervision specifically improves generation is not directly tested, because no ablation removes the correspondence loss while keeping the architecture identical. The quantitative results also lack error bars and significance tests, which is important given the small evaluation set and the modest metric gaps.

major comments (3)
  1. [Sec. 4.2, Table 4 and Eq. (4)] The experimental design does not isolate the correspondence loss Lcorr from the architectural change. Track4Gen differs from the finetuned-SVD baseline in two coupled ways: the refiner module Rphi is supervised by Lcorr, and the zero-convolution zeta_psi injects Rphi's output into the backbone. The ablation 'Track4Gen w/o refiner' removes both the refiner and the injection path, so the improved scores in Table 1 could come from the added residual-adapter capacity rather than from tracking supervision. Please add a variant trained with the full Track4Gen architecture (refiner Rphi plus zero-conv zeta_psi) but with Lcorr removed (lambda = 0 in the joint loss), so the effect of the correspondence loss is directly measurable. This control is necessary to support the paper's central claim.
  2. [Table 1 and Fig. 8] Quantitative generation results are reported without error bars, confidence intervals, or significance tests. Several VBench differences between Track4Gen and finetuned SVD are small (e.g., Temporal Flickering 0.9806 vs 0.9800, Motion Smoothness 0.9921 vs 0.9909), and the VBench evaluation uses only 355 images. The FID/FVD values are also single numbers without variance; the user study reports only aggregate preference percentages. Without variance estimates or at least paired significance tests, it is hard to assess whether the reported improvements are robust. Please report results over multiple seeds or bootstrap confidence intervals, and include the user-study per-participant agreement or a significance test.
  3. [Sec. 4.1 and Supplementary A.1] The training data is only 567 short video clips, with pseudo-ground-truth trajectories generated by chaining RAFT optical flow and filtering via cycle consistency. This is a small and potentially noisy supervision source. Since the method finetunes the temporal transformer blocks on this data, the observed reduction in appearance drift could partly reflect adaptation to the specific training distribution (including reduced camera motion, as the authors acknowledge in the Conclusion) rather than a generalizable correspondence prior. Please report statistics on the quality and coverage of the generated tracklets (e.g., number of surviving tracks, distribution of motion magnitudes), and consider evaluating generation on a broader set of prompts to demonstrate generalization beyond the training distribution.
minor comments (4)
  1. [Sec. 3.3, Eq. (4)] The weighting factor lambda in the joint loss Ldiff + lambda * Lcorr is not defined until Sec. 4.1; it would be helpful to introduce it at the point of the loss definition in Sec. 3.3.
  2. [Sec. 4.2 and Table 2] The formatting of Table 2 is dense and the column alignment is difficult to read; please reformat it for clarity, separating generation and tracking metrics more clearly.
  3. [Sec. 3.2 and Sec. 4.3.1] The cosine similarity threshold of 0.6 is used both for pruning correspondences in feature analysis and for occlusion prediction in tracking evaluation; this dual use should be clarified, as the two tasks may benefit from different thresholds.
  4. [Supplementary A.2] The description of the refiner network states that the last layer has no BatchNorm, while the first seven layers do; please confirm that this design choice is intentional and report whether BatchNorm in the last layer was tried.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: training targets and evaluation benchmarks are external, and the central generation claim is independently measured.

full rationale

Track4Gen's claimed derivation chain is self-contained and externally anchored. The correspondence supervision targets are pseudo-labels produced by chaining RAFT optical flow with cycle-consistency filtering (Sec. 4.1 and Supp. A.1), not by the model's own outputs or by the metrics being reported. The central generation claim is evaluated on the external VBench-I2V benchmark with DINO-based Subject Consistency, Temporal Flickering, Motion Smoothness, Image Quality, Video-Image Alignment, plus FID/FVD and a user study (Sec. 4.2); none of these metrics is optimized during training. The tracking auxiliary claim is tested on TAP-Vid DAVIS and BADJA with human-annotated ground truth (Sec. 4.3), so measuring how closely the refiner imitates RAFT is a transfer result, not a definitional identity. The training corpus draws on public video-segmentation datasets that include DAVIS, which is a potential train/test overlap for the tracking benchmark, but the benchmark labels are human-annotated TAP-Vid ground truth rather than the RAFT pseudo-labels used for training, so the tracking evaluation does not reduce to the training objective by construction. The only self-citation is Ref. [32] in Future Work, pointing to the authors' concurrent camera-pose unification paper; it is not load-bearing evidence. The absence of an ablation that removes Lcorr while keeping the zero-convolution injection path is a legitimate causal-attribution confound, but it is an experimental-design gap, not a reduction-by-construction of the paper's claims. Supplementary Sec. E candidly lists limitations (reduced camera motion, artifacts on faces and hands, tracking failures on fast-moving or ambiguous objects), and none of these indicate circularity. Therefore no circular step is present.

Assumptions & free parameters 6 free parameters · 4 assumptions · 1 invented entities

The central claim rests on a small hand-curated training set, pseudo-labeled by RAFT optical flow, and on several hand-chosen hyperparameters (loss weight, search radius, feature block). These choices are all plausible but not independently motivated beyond the paper's own experiments.

free parameters (6)
  • lambda_Lcorr = 8
    Weight of the correspondence loss relative to the diffusion loss; chosen by hand, no sweep reported. Directly controls the amount of tracking supervision.
  • R_window_radius = 35
    Soft-argmax search radius in feature-space pixels (feature map 44x81). Chosen to balance localization and robustness; affects tracking precision.
  • cosine_sim_threshold = 0.6
    Threshold used for occlusion prediction in zero-shot tracking evaluation; adopted from prior work [66]. Influences reported OA and AJ scores.
  • training_steps_lr_batch = 20K steps, lr 1e-5, batch 4
    Standard finetuning hyperparameters; no search reported. Affect convergence and final generation quality.
  • feature_block_selection = upsampler of 3rd decoder block
    Chosen based on a feature analysis of real and generated videos; the location of tracking supervision. Poor choice would weaken the loss.
  • training_dataset_composition = 567 video-trajectory pairs
    Small curated set from DAVIS-like sources with segmentation maps; exact split not released. The scale and diversity likely influence generalization and the observed reduction in camera motion.
assumptions (4)
  • domain assumption Pre-trained Stable Video Diffusion provides a strong video prior and its internal features contain usable correspondences.
    Invoked in Sec. 3.2 and 3.3; the method builds on SVD without retraining from scratch.
  • domain assumption RAFT optical flow, chained across frames and filtered by cycle consistency, provides sufficiently accurate point trajectories for supervision.
    Used to construct the training set (Sec. 4.1, A.1). If flow is noisy, the correspondence loss may teach incorrect tracks.
  • standard math Identity initialization of the refiner and zero-initialized convolution preserve the base model prior at the start of finetuning.
    Follows ControlNet [82] design; prevents early destabilization of the backbone.
  • ad hoc to paper Adding correspondence supervision on the chosen block improves appearance consistency without degrading video quality.
    This is the central hypothesis of the paper, tested empirically; it is not proven a priori.
invented entities (1)
  • Refiner module R_phi independent evidence
    purpose: Projects raw diffusion features into a correspondence-rich feature space used for tracking and fed back into the backbone.
    A concrete trainable module (8-layer 2D CNN) whose contribution is validated by ablations in Table 4. It is not a new physical entity.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Track4Gen: Teaching Video Diffusion Models to Track Points Improves Video Generation." pith.science (2026). https://pith.science/paper/XIDZT3DH

@misc{pith2026241206016,
  author       = {Pith},
  title        = {Pith review of: Track4Gen: Teaching Video Diffusion Models to Track Points Improves Video Generation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/XIDZT3DH}},
  note         = {Machine review of arXiv:2412.06016}
}
read the original abstract

While recent foundational video generators produce visually rich output, they still struggle with appearance drift, where objects gradually degrade or change inconsistently across frames, breaking visual coherence. We hypothesize that this is because there is no explicit supervision in terms of spatial tracking at the feature level. We propose Track4Gen, a spatially aware video generator that combines video diffusion loss with point tracking across frames, providing enhanced spatial supervision on the diffusion features. Track4Gen merges the video generation and point tracking tasks into a single network by making minimal changes to existing video generation architectures. Using Stable Video Diffusion as a backbone, Track4Gen demonstrates that it is possible to unify video generation and point tracking, which are typically handled as separate tasks. Our extensive evaluations show that Track4Gen effectively reduces appearance drift, resulting in temporally stable and visually coherent video generation. Project page: hyeonho99.github.io/track4gen

Figures

Figures reproduced from arXiv: 2412.06016 by the authors.

Figure 1
Figure 1. Motivation. Videos generated by Stable Video Diffu￾sion [5] suffer from appearance drift, while those from our method, Track4Gen, are free from such appearance inconsistency issues. Unfortunately, appearance drift remains a persistent is￾sue in current video models, even with increased training data and more advanced architectures. We speculate that this limitation arises from supervision being based solely on video… view at source ↗
Figure 2
Figure 2. Track4Gen overview. Red-colored blocks represent layers optimized by the diffusion loss Ldiff, while green blocks are optimized by the correspondence loss Lcorr. Blocks colored both red and green are influenced by the joint loss, Ldiff + λLcorr. See text for details. 3.1. Background: Stable Video Diffusion Starting from random Gaussian noise, diffusion models aim to generate clean images or videos via an iterative d… view at source ↗
Figure 3
Figure 3. Real-world video tracking using different video diffusion features. Given color-coded query points on the first frame (Leftmost column), we display tracked points on target frames using features from different blocks (right columns). The 13th frame (first row) and 8th frame (second row) are shown as target frames. Full results are available in the supplementary and on our page. introduce Track4Gen where we accomplis… view at source ↗
Figures from the paper (18 more)
Figure 4
Figure 4. Figure 4 [PITH_FULL_IMAGE:figures/full_fig_p004_4.png]
Figure 5
Figure 5. Figure 5: Image-to-video generation results of the original SVD and Track4Gen. Please visit our page for full video view. dence loss Lcorr is computed using the Huber loss LH [34]: Lcorr(h˜ 1:N , Ω) = X (x i q ,x j trg)∈Ω LH(ξ(x i q , j, h˜ 1:N ), x j trg) (4) When training Trac…
Figure 6
Figure 6. Figure 6: Qualitative ablation on video generation. Track4Gen is compared with finetuned SVD (SVD finetuned on the same training videos without any correspondence supervision) and Track4Gen trained without the Refiner module. default settings using 30 steps with the EDM sampler …
Figure 7
Figure 7. Figure 7: Qualitative comparison of Track4Gen and baselines for real-world video tracking. The leftmost column displays query points in the first frame, while the following three columns show tracking results using features from each model. (a) Identity preservation (b) Motion n…
Figure 8
Figure 8. Figure 8: User study results. Our study shows that Track4Gen better preserves object identity and produces more natural motion. Quantitative results. As shown in Tab. 1, our method achieves the highest scores across all 5 metrics from VBench, along with the lowest FID and second…
Figure 9
Figure 9. Figure 9: Extending Track4Gen with test-time adaptation [66] [PITH_FULL_IMAGE:figures/full_fig_p008_9.png]
Figure 10
Figure 10. Figure 10: The figure compares the training schemes of this baseline with Track4Gen. In this variant, the correspon￾dence loss Lcorr is computed directly from the raw video diffusion features h 1:N [PITH_FULL_IMAGE:figures/full_fig_p013_10.png]
Figure 11
Figure 11. Figure 11: Example user evaluation page. The order of Track4Gen and the baseline is randomly shuffled to ensure a fair comparison [PITH_FULL_IMAGE:figures/full_fig_p014_11.png]
Figure 12
Figure 12. Figure 12: Generated Videos with Embedded Tracks. Predicted point tracks are annotated on the videos generated by Track4Gen [PITH_FULL_IMAGE:figures/full_fig_p016_12.png]
Figure 13
Figure 13. Figure 13: Qualitative video generation results: Track4Gen compared against all three baselines [PITH_FULL_IMAGE:figures/full_fig_p017_13.png]
Figure 14
Figure 14. Figure 14: Qualitative video generation results: Track4Gen compared against all three baselines [PITH_FULL_IMAGE:figures/full_fig_p018_14.png]
Figure 15
Figure 15. Figure 15: Additional feature comparison on real-world video tracking: Track4Gen vs DINOv2 vs Stable Video Diffusion vs Zero￾Scope [PITH_FULL_IMAGE:figures/full_fig_p019_15.png]
Figure 16
Figure 16. Figure 16: Additional feature comparison on real-world video tracking: Track4Gen vs DINOv2 [PITH_FULL_IMAGE:figures/full_fig_p020_16.png]
Figure 17
Figure 17. Figure 17: Extending Track4Gen features with test-time adaptation [66] [PITH_FULL_IMAGE:figures/full_fig_p020_17.png]
Figure 18
Figure 18. Figure 18: Optimization progress visualization. The first rows show tracking results using zero-shot Track4Gen features, while the third rows display results after 5,000 optimization steps [PITH_FULL_IMAGE:figures/full_fig_p021_18.png]
Figure 19
Figure 19. Figure 19: Video tracking failure cases. Track4Gen features struggle to capture point correspondences in videos with fast-moving objects or multiple semantically similar objects [PITH_FULL_IMAGE:figures/full_fig_p021_19.png]
Figure 20
Figure 20. Figure 20: Limitation. Generated videos of Track4Gen may exhibit reduced camera motion [PITH_FULL_IMAGE:figures/full_fig_p022_20.png]
Figure 21
Figure 21. Figure 21: Video generation failure cases. Track4Gen may generate videos with physically unrealistic motion and artifacts on human faces. For instance, the red bus (row 1) drives backward, the frog (row 2) jumps mid-air, and the faces (row 3,4) display artifacts [PITH_FULL_IMAG…

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 3 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. SpatialTrackerV2: 3D Point Tracking Made Easy

    cs.CV 2025-07 conditional novelty 6.0 of 10

    A single feed-forward model jointly estimates video depth, camera poses, and 3D point trajectories from monocular video, setting a new state of the art on TAPVid-3D.

  2. Diffusion as Shader: 3D-aware Video Diffusion for Versatile Video Generation Control

    cs.CV 2025-01 conditional novelty 6.0 of 10

    A single video diffusion model conditioned on colored 3D point trajectories performs camera control, motion transfer, mesh-to-video, and object manipulation with improved temporal consistency.

  3. Improving Video Diffusion Transformer Training by Multi-Feature Fusion and Alignment from Self-Supervised Vision Encoders

    cs.CV 2025-09 conditional novelty 5.0 of 10

    Matching video diffusion transformer tokens to concatenated DINOv2 and SAM2 features improves FVD/FID and speeds convergence, e.g., 400K-step fusion beats 1M-step baseline on UCF-101.

Reference graph

Works this paper leans on

87 extracted references · 32 canonical work pages · cited by 3 Pith papers

  1. [1]

    Deep vit features as dense visual descriptors

    Shir Amir, Yossi Gandelsman, Shai Bagon, and Tali Dekel. Deep vit features as dense visual descriptors. arXiv preprint arXiv:2112.05814, 2(3):4, 2021. 14

  2. [2]

    Can visual foundation models achieve long-term point tracking? arXiv preprint arXiv:2408.13575, 2024

    G ¨orkay Aydemir, Weidi Xie, and Fatma G ¨uney. Can visual foundation models achieve long-term point tracking? arXiv preprint arXiv:2408.13575, 2024. 2, 14

  3. [3]

    Context-PIPs: Persistent Independent Particles Demands Spatial Context Features

    Weikang Bian, Zhaoyang Huang, Xiaoyu Shi, Yitong Dong, Yijin Li, and Hongsheng Li. Context-tap: Tracking any point demands spatial context features. arXiv preprint arXiv:2306.02000, 3, 2023. 2

  4. [4]

    Creatures great and smal: Recovering the shape and motion of animals from video

    Benjamin Biggs, Thomas Roddick, Andrew Fitzgibbon, and Roberto Cipolla. Creatures great and smal: Recovering the shape and motion of animals from video. In Computer Vision–ACCV 2018: 14th Asian Conference on Computer Vision, Perth, Australia, December 2–6, 2018, Revised Se- lected Papers, Part V 14, pages 3–19. Springer, 2019. 7

  5. [5]

    Stable video diffusion: Scaling latent video diffusion models to large datasets

    Andreas Blattmann, Tim Dockhorn, Sumith Kulal, Daniel Mendelevitch, Maciej Kilian, Dominik Lorenz, Yam Levi, Zion English, Vikram V oleti, Adam Letts, et al. Stable video diffusion: Scaling latent video diffusion models to large datasets. arXiv preprint arXiv:2311.15127 , 2023. 1, 2, 3, 4, 6, 7, 13, 14

  6. [6]

    Align your latents: High-resolution video synthesis with la- tent diffusion models

    Andreas Blattmann, Robin Rombach, Huan Ling, Tim Dock- horn, Seung Wook Kim, Sanja Fidler, and Karsten Kreis. Align your latents: High-resolution video synthesis with la- tent diffusion models. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 22563–22575, 2023. 2

  7. [7]

    Video generation models as world simulators

    Tim Brooks, Bill Peebles, Connor Holmes, Will DePue, Yufei Guo, Li Jing, David Schnurr, Joe Taylor, Troy Luh- man, Eric Luhman, Clarence Ng, Ricky Wang, and Aditya Ramesh. Video generation models as world simulators

  8. [8]

    The 2018 davis challenge on video object seg- mentation

    Sergi Caelles, Alberto Montes, Kevis-Kokitsi Maninis, Yuhua Chen, Luc Van Gool, Federico Perazzi, and Jordi Pont-Tuset. The 2018 davis challenge on video object seg- mentation. arXiv preprint arXiv:1803.00557, 2018. 5

Show all 87 references
  1. [9]

    Emerg- ing properties in self-supervised vision transformers

    Mathilde Caron, Hugo Touvron, Ishan Misra, Herv ´e J´egou, Julien Mairal, Piotr Bojanowski, and Armand Joulin. Emerg- ing properties in self-supervised vision transformers. In Pro- ceedings of the IEEE/CVF international conference on com- puter vision, pages 9650–9660, 2021. 14

  2. [10]

    Videocrafter1: Open diffusion models for high-quality video generation

    Haoxin Chen, Menghan Xia, Yingqing He, Yong Zhang, Xiaodong Cun, Shaoshu Yang, Jinbo Xing, Yaofang Liu, Qifeng Chen, Xintao Wang, et al. Videocrafter1: Open diffusion models for high-quality video generation. arXiv preprint arXiv:2310.19512, 2023. 2

  3. [11]

    Deconstructing denois- ing diffusion models for self-supervised learning

    X Chen, Z Liu, S Xie, and K He. Deconstructing denois- ing diffusion models for self-supervised learning. arxiv 2024. arXiv preprint arXiv:2401.14404. 3

  4. [12]

    Local all-pair correspon- dence for point tracking

    Seokju Cho, Jiahui Huang, Jisu Nam, Honggyu An, Seun- gryong Kim, and Joon-Young Lee. Local all-pair correspon- dence for point tracking. arXiv preprint arXiv:2407.15420,

  5. [13]

    Diffusion models beat gans on image synthesis

    Prafulla Dhariwal and Alexander Nichol. Diffusion models beat gans on image synthesis. Advances in neural informa- tion processing systems, 34:8780–8794, 2021. 2

  6. [14]

    Tap-vid: A benchmark for track- ing any point in a video

    Carl Doersch, Ankush Gupta, Larisa Markeeva, Adria Re- casens, Lucas Smaira, Yusuf Aytar, Joao Carreira, Andrew Zisserman, and Yi Yang. Tap-vid: A benchmark for track- ing any point in a video. Advances in Neural Information Processing Systems, 35:13610–13626, 2022. 2, 5, 7, 8, 13

  7. [15]

    Tapir: Tracking any point with per-frame initialization and temporal refinement

    Carl Doersch, Yi Yang, Mel Vecerik, Dilara Gokay, Ankush Gupta, Yusuf Aytar, Joao Carreira, and Andrew Zisserman. Tapir: Tracking any point with per-frame initialization and temporal refinement. In Proceedings of the IEEE/CVF In- ternational Conference on Computer Vision , pag...

  8. [16]

    Bootstap: Boot- strapped training for tracking-any-point

    Carl Doersch, Yi Yang, Dilara Gokay, Pauline Luc, Skanda Koppula, Ankush Gupta, Joseph Heyward, Ross Goroshin, Jo˜ao Carreira, and Andrew Zisserman. Bootstap: Boot- strapped training for tracking-any-point. arXiv preprint arXiv:2402.00847, 2024. 8

  9. [17]

    An image is worth 16x16 words: Transformers for image recognition at scale

    Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Syl- vain Gelly, Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image recognition ...

  10. [18]

    Niladri Shekhar Dutt, Sanjeev Muralikrishnan, and Niloy J. Mitra. Diffusion 3d features (diff3f): Decorating untextured shapes with distilled semantic features. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 4494–4504, 2024. 2

  11. [19]

    Jumpcut: non-successive mask transfer and interpolation for video cutout

    Qingnan Fan, Fan Zhong, Dani Lischinski, Daniel Cohen-Or, and Baoquan Chen. Jumpcut: non-successive mask transfer and interpolation for video cutout. ACM Trans. Graph., 34 (6):195–1, 2015. 5

  12. [20]

    Brandt, Axel Feld- mann, Zhoutong Zhang, and William T

    Stephanie Fu, Mark Hamilton, Laura E. Brandt, Axel Feld- mann, Zhoutong Zhang, and William T. Freeman. Featup: A model-agnostic framework for features at any resolution. In ICLR, 2024. 2

  13. [21]

    Tokenflow: Consistent diffusion features for consistent video editing

    Michal Geyer, Omer Bar-Tal, Shai Bagon, and Tali Dekel. Tokenflow: Consistent diffusion features for consistent video editing. arXiv preprint arXiv:2307.10373, 2023. 2

  14. [22]

    Kubric: A scalable dataset generator

    Klaus Greff, Francois Belletti, Lucas Beyer, Carl Doersch, Yilun Du, Daniel Duckworth, David J Fleet, Dan Gnanapra- gasam, Florian Golemo, Charles Herrmann, et al. Kubric: A scalable dataset generator. In Proceedings of the IEEE/CVF conference on computer vision and pattern re...

  15. [23]

    Videoswap: Customized video subject swapping with interactive semantic point cor- respondence

    Yuchao Gu, Yipin Zhou, Bichen Wu, Licheng Yu, Jia-Wei Liu, Rui Zhao, Jay Zhangjie Wu, David Junhao Zhang, Mike Zheng Shou, and Kevin Tang. Videoswap: Customized video subject swapping with interactive semantic point cor- respondence. In Proceedings of the IEEE/CVF Conference o...

  16. [24]

    Animatediff: Animate your personalized text- to-image diffusion models without specific tuning

    Yuwei Guo, Ceyuan Yang, Anyi Rao, Zhengyang Liang, Yaohui Wang, Yu Qiao, Maneesh Agrawala, Dahua Lin, and Bo Dai. Animatediff: Animate your personalized text- to-image diffusion models without specific tuning. arXiv preprint arXiv:2307.04725, 2023. 2

  17. [25]

    Particle video revisited: Tracking through occlusions using point trajectories

    Adam W Harley, Zhaoyuan Fang, and Katerina Fragkiadaki. Particle video revisited: Tracking through occlusions using point trajectories. In European Conference on Computer Vi- sion, pages 59–75. Springer, 2022. 2

  18. [26]

    Latent video diffusion models for high-fidelity long video generation

    Yingqing He, Tianyu Yang, Yong Zhang, Ying Shan, and Qifeng Chen. Latent video diffusion models for high-fidelity long video generation. arXiv preprint arXiv:2211.13221 ,

  19. [27]

    Unsupervised semantic correspondence using stable diffu- sion

    Eric Hedlin, Gopal Sharma, Shweta Mahajan, Hossam Isack, Abhishek Kar, Andrea Tagliasacchi, and Kwang Moo Yi. Unsupervised semantic correspondence using stable diffu- sion. In NIPS, 2023. 2

  20. [28]

    Gans trained by a two time-scale update rule converge to a local nash equilib- rium

    Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, and Sepp Hochreiter. Gans trained by a two time-scale update rule converge to a local nash equilib- rium. Advances in neural information processing systems , 30, 2017. 2, 6

  21. [29]

    Denoising dif- fusion probabilistic models

    Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising dif- fusion probabilistic models. Advances in neural information processing systems, 33:6840–6851, 2020. 3

  22. [30]

    Imagen video: High definition video generation with diffusion mod- els

    Jonathan Ho, William Chan, Chitwan Saharia, Jay Whang, Ruiqi Gao, Alexey Gritsenko, Diederik P Kingma, Ben Poole, Mohammad Norouzi, David J Fleet, et al. Imagen video: High definition video generation with diffusion mod- els. arXiv preprint arXiv:2210.02303, 2022. 2

  23. [31]

    Video dif- fusion models

    Jonathan Ho, Tim Salimans, Alexey Gritsenko, William Chan, Mohammad Norouzi, and David J Fleet. Video dif- fusion models. Advances in Neural Information Processing Systems, 35:8633–8646, 2022. 2

  24. [32]

    Mitra, and Duygu Ceylan

    Chun-Hao Paul Huang, Jae Shin Yoon, Hyeonho Jeong, Niloy J. Mitra, and Duygu Ceylan. On unifying video gen- eration and camera pose estimation, 2025. 8

  25. [33]

    Vbench: Comprehensive bench- mark suite for video generative models

    Ziqi Huang, Yinan He, Jiashuo Yu, Fan Zhang, Chenyang Si, Yuming Jiang, Yuanhan Zhang, Tianxing Wu, Qingyang Jin, Nattapol Chanpaisit, et al. Vbench: Comprehensive bench- mark suite for video generative models. In Proceedings of the IEEE/CVF Conference on Computer Vision and P...

  26. [34]

    Robust estimation of a location parameter

    Peter J Huber. Robust estimation of a location parameter. In Breakthroughs in statistics: Methodology and distribution , pages 492–518. Springer, 1992. 5

  27. [35]

    Space-time correspondence as a contrastive random walk

    Allan Jabri, Andrew Owens, and Alexei Efros. Space-time correspondence as a contrastive random walk. Advances in neural information processing systems, 33:19545–19560,

  28. [36]

    Co- tracker: It is better to track together

    Nikita Karaev, Ignacio Rocco, Benjamin Graham, Natalia Neverova, Andrea Vedaldi, and Christian Rupprecht. Co- tracker: It is better to track together. arXiv preprint arXiv:2307.07635, 2023. 2

  29. [37]

    Co- tracker3: Simpler and better point tracking by pseudo- labelling real videos

    Nikita Karaev, Iurii Makarov, Jianyuan Wang, Natalia Neverova, Andrea Vedaldi, and Christian Rupprecht. Co- tracker3: Simpler and better point tracking by pseudo- labelling real videos. arXiv preprint arXiv:2410.11831 ,

  30. [38]

    Elucidating the design space of diffusion-based generative models

    Tero Karras, Miika Aittala, Timo Aila, and Samuli Laine. Elucidating the design space of diffusion-based generative models. Advances in neural information processing systems, 35:26565–26577, 2022. 3, 4, 6

  31. [39]

    Musiq: Multi-scale image quality transformer

    Junjie Ke, Qifei Wang, Yilin Wang, Peyman Milanfar, and Feng Yang. Musiq: Multi-scale image quality transformer. In Proceedings of the IEEE/CVF international conference on computer vision, pages 5148–5157, 2021. 6

  32. [40]

    Auto-encoding variational bayes

    Diederik P Kingma. Auto-encoding variational bayes. arXiv preprint arXiv:1312.6114, 2013. 3

  33. [41]

    Harivo: Harnessing text-to-image models for video generation

    Mingi Kwon, Seoung Wug Oh, Yang Zhou, Difan Liu, Joon-Young Lee, Haoran Cai, Baqiao Liu, Feng Liu, and Youngjung Uh. Harivo: Harnessing text-to-image models for video generation. arXiv preprint arXiv:2410.07763 , 2024. 15

  34. [42]

    Li, Mihir Prabhudesai, Shivam Duggal, Ellis Brown, and Deepak Pathak

    Alexander C. Li, Mihir Prabhudesai, Shivam Duggal, Ellis Brown, and Deepak Pathak. Your diffusion model is secretly a zero-shot classifier. In ICCV, 2023. 2

  35. [43]

    Video segmentation by tracking many figure- ground segments

    Fuxin Li, Taeyoung Kim, Ahmad Humayun, David Tsai, and James M Rehg. Video segmentation by tracking many figure- ground segments. In Proceedings of the IEEE international conference on computer vision, pages 2192–2199, 2013. 5

  36. [44]

    Taptr: Tracking any point with transformers as detection

    Hongyang Li, Hao Zhang, Shilong Liu, Zhaoyang Zeng, Tianhe Ren, Feng Li, and Lei Zhang. Taptr: Tracking any point with transformers as detection. arXiv preprint arXiv:2403.13042, 2024. 2

  37. [45]

    Sd4match: Learning to prompt stable diffusion model for semantic matching

    Xinghui Li, Jingyi Lu, Kai Han, and Victor Prisacariu. Sd4match: Learning to prompt stable diffusion model for semantic matching. In CVPR, 2023. 2

  38. [46]

    Amt: All-pairs multi-field transforms for efficient frame interpolation

    Zhen Li, Zuo-Liang Zhu, Ling-Hao Han, Qibin Hou, Chun- Le Guo, and Ming-Ming Cheng. Amt: All-pairs multi-field transforms for efficient frame interpolation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pat- tern Recognition, pages 9801–9810, 2023. 6

  39. [47]

    Fixing weight decay regularization in adam

    Ilya Loshchilov, Frank Hutter, et al. Fixing weight decay regularization in adam. arXiv preprint arXiv:1711.05101, 5,

  40. [48]

    Diffusion hyperfeatures: Searching through time and space for semantic correspondence

    Grace Luo, Lisa Dunlap, Dong Huk Park, Aleksander Holyn- ski, and Trevor Darrell. Diffusion hyperfeatures: Searching through time and space for semantic correspondence. Ad- vances in Neural Information Processing Systems, 36, 2024. 3

  41. [49]

    Dinov2: Learning robust visual features without supervision

    Maxime Oquab, Timoth ´ee Darcet, Th ´eo Moutakanni, Huy V o, Marc Szafraniec, Vasil Khalidov, Pierre Fernandez, Daniel Haziza, Francisco Massa, Alaaeldin El-Nouby, et al. Dinov2: Learning robust visual features without supervision. arXiv preprint arXiv:2304.07193, 2023. 2, 6, 8, 14

  42. [50]

    A benchmark dataset and evaluation methodology for video object segmentation

    Federico Perazzi, Jordi Pont-Tuset, Brian McWilliams, Luc Van Gool, Markus Gross, and Alexander Sorkine-Hornung. A benchmark dataset and evaluation methodology for video object segmentation. In Proceedings of the IEEE conference on computer vision and pattern recognition, page...

  43. [51]

    Movie gen: A cast of media foundation models

    Adam Polyak, Amit Zohar, Andrew Brown, Andros Tjandra, Animesh Sinha, Ann Lee, Apoorv Vyas, Bowen Shi, Chih- Yao Ma, Ching-Yao Chuang, et al. Movie gen: A cast of media foundation models. arXiv preprint arXiv:2410.13720,

  44. [52]

    The 2017 davis challenge on video object segmentation.arXiv preprint arXiv:1704.00675, 2017

    Jordi Pont-Tuset, Federico Perazzi, Sergi Caelles, Pablo Ar- bel´aez, Alex Sorkine-Hornung, and Luc Van Gool. The 2017 davis challenge on video object segmentation.arXiv preprint arXiv:1704.00675, 2017. 5, 6

  45. [53]

    Learning transferable visual models from natural language supervi- sion

    Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learning transferable visual models from natural language supervi- sion. In International conference on machine learning, ...

  46. [54]

    Blattmann, Dominik Lorenz, Patrick Esser, and Bj ¨orn Ommer

    Robin Rombach, A. Blattmann, Dominik Lorenz, Patrick Esser, and Bj ¨orn Ommer. High-resolution image synthesis with latent diffusion models. In CVPR, 2021. 2

  47. [55]

    High-resolution image synthesis with latent diffusion models

    Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj ¨orn Ommer. High-resolution image synthesis with latent diffusion models. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 10684–10695, 2022. 2

  48. [56]

    Progressive distillation for fast sampling of diffusion models

    Tim Salimans and Jonathan Ho. Progressive distillation for fast sampling of diffusion models. arXiv preprint arXiv:2202.00512, 2022. 4

  49. [57]

    Particle video: Long-range mo- tion estimation using point trajectories.International journal of computer vision, 80:72–91, 2008

    Peter Sand and Seth Teller. Particle video: Long-range mo- tion estimation using point trajectories.International journal of computer vision, 80:72–91, 2008. 2

  50. [58]

    Make-a-video: Text-to-video generation without text-video data

    Uriel Singer, Adam Polyak, Thomas Hayes, Xi Yin, Jie An, Songyang Zhang, Qiyuan Hu, Harry Yang, Oron Ashual, Oran Gafni, et al. Make-a-video: Text-to-video generation without text-video data. arXiv preprint arXiv:2209.14792 ,

  51. [59]

    Deep unsupervised learning using nonequilibrium thermodynamics

    Jascha Sohl-Dickstein, Eric Weiss, Niru Maheswaranathan, and Surya Ganguli. Deep unsupervised learning using nonequilibrium thermodynamics. In International confer- ence on machine learning, pages 2256–2265. PMLR, 2015. 3

  52. [60]

    Zeroscope, 2023

    Spencer Sterling. Zeroscope, 2023. https : / / huggingface . co / cerspense / zeroscope _ v2 _ 576w. 3, 7, 14

  53. [61]

    Tamir, Lucy Chai, Simon Kornblith, Trevor Darrell, and Phillip Isola

    Shobhita Sundaram, Stephanie Fu, Lukas Muttenthaler, Ne- tanel Y . Tamir, Lucy Chai, Simon Kornblith, Trevor Darrell, and Phillip Isola. When does perceptual alignment benefit vision representations? In NIPS, 2024. 2

  54. [62]

    Lift: A surprisingly simple lightweight feature transform for dense vit descriptors

    Saksham Suri, Matthew Walmer, Kamal Gupta, and Abhinav Shrivastava. Lift: A surprisingly simple lightweight feature transform for dense vit descriptors. In ECCV, pages 110–

  55. [63]

    Emergent correspondence from image diffusion

    Luming Tang, Menglin Jia, Qianqian Wang, Cheng Perng Phoo, and Bharath Hariharan. Emergent correspondence from image diffusion. Advances in Neural Information Pro- cessing Systems, 36:1363–1389, 2023. 3, 7

  56. [64]

    Raft: Recurrent all-pairs field transforms for optical flow

    Zachary Teed and Jia Deng. 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, pages 402–419. Springer,

  57. [65]

    Plug-and-play diffusion features for text-driven image-to-image translation

    Narek Tumanyan, Michal Geyer, Shai Bagon, and Tali Dekel. Plug-and-play diffusion features for text-driven image-to-image translation. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 1921–1930, 2023. 2

  58. [66]

    Dino-tracker: Taming dino for self-supervised point tracking in a single video

    Narek Tumanyan, Assaf Singer, Shai Bagon, and Tali Dekel. Dino-tracker: Taming dino for self-supervised point tracking in a single video. arXiv preprint arXiv:2403.14548, 2024. 2, 3, 7, 8, 13, 14, 20

  59. [67]

    To- wards accurate generative models of video: A new metric & challenges

    Thomas Unterthiner, Sjoerd Van Steenkiste, Karol Kurach, Raphael Marinier, Marcin Michalski, and Sylvain Gelly. To- wards accurate generative models of video: A new metric & challenges. arXiv preprint arXiv:1812.01717, 2018. 2, 6

  60. [68]

    A connection between score matching and denoising autoencoders

    Pascal Vincent. A connection between score matching and denoising autoencoders. Neural computation, 23(7):1661– 1674, 2011. 1

  61. [69]

    Tracking everything everywhere all at once

    Qianqian Wang, Yen-Yu Chang, Ruojin Cai, Zhengqi Li, Bharath Hariharan, Aleksander Holynski, and Noah Snavely. Tracking everything everywhere all at once. In Proceedings of the IEEE/CVF International Conference on Computer Vi- sion, pages 19795–19806, 2023. 2, 8, 13

  62. [70]

    Zero-shot video semantic segmentation based on pre-trained diffusion models, 2024

    Qian Wang, Abdelrahman Eldesokey, Mohit Mendiratta, Fangneng Zhan, Adam Kortylewski, Christian Theobalt, and Peter Wonka. Zero-shot video semantic segmentation based on pre-trained diffusion models, 2024. 2

  63. [71]

    Lavie: High-quality video gener- ation with cascaded latent diffusion models

    Yaohui Wang, Xinyuan Chen, Xin Ma, Shangchen Zhou, Ziqi Huang, Yi Wang, Ceyuan Yang, Yinan He, Jiashuo Yu, Peiqing Yang, et al. Lavie: High-quality video gener- ation with cascaded latent diffusion models. arXiv preprint arXiv:2309.15103, 2023. 2

  64. [72]

    Towards a better metric for text-to-video generation

    Jay Zhangjie Wu, Guian Fang, Haoning Wu, Xintao Wang, Yixiao Ge, Xiaodong Cun, David Junhao Zhang, Jia-Wei Liu, Yuchao Gu, Rui Zhao, et al. Towards a better metric for text-to-video generation. arXiv preprint arXiv:2401.07781,

  65. [73]

    Denoising diffusion autoencoders are unified self-supervised learners

    Weilai Xiang, Hongyu Yang, Di Huang, and Yunhong Wang. Denoising diffusion autoencoders are unified self-supervised learners. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 15802–15812, 2023. 3

  66. [74]

    Spatialtracker: Tracking any 2d pixels in 3d space

    Yuxi Xiao, Qianqian Wang, Shangzhan Zhang, Nan Xue, Sida Peng, Yujun Shen, and Xiaowei Zhou. Spatialtracker: Tracking any 2d pixels in 3d space. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 20406–20417, 2024. 2

  67. [75]

    ODISE: Open-V ocabulary Panoptic Segmentation with Text-to-Image Diffusion Mod- els

    Jiarui Xu, Sifei Liu, Arash Vahdat, Wonmin Byeon, Xiao- long Wang, and Shalini De Mello. ODISE: Open-V ocabulary Panoptic Segmentation with Text-to-Image Diffusion Mod- els. In CVPR, 2023. 2

  68. [76]

    Pre-constancy vision in infants.Current Biology, 25(24):3209–3212, 2015

    Jiale Yang, So Kanazawa, Masami K Yamaguchi, and Isamu Motoyoshi. Pre-constancy vision in infants.Current Biology, 25(24):3209–3212, 2015. 1

  69. [77]

    Diffusion model as repre- sentation learner

    Xingyi Yang and Xinchao Wang. Diffusion model as repre- sentation learner. In Proceedings of the IEEE/CVF Interna- tional Conference on Computer Vision, pages 18938–18949,

  70. [78]

    Representation alignment for generation: Training diffu- sion transformers is easier than you think

    Sihyun Yu, Sangkyung Kwak, Huiwon Jang, Jongheon Jeong, Jonathan Huang, Jinwoo Shin, and Saining Xie. Representation alignment for generation: Training diffu- sion transformers is easier than you think. arXiv preprint arXiv:2410.06940, 2024. 2, 3

  71. [79]

    Improving 2D Feature Representa- tions by 3D-Aware Fine-Tuning

    Yuanwen Yue, Anurag Das, Francis Engelmann, Siyu Tang, and Jan Eric Lenssen. Improving 2D Feature Representa- tions by 3D-Aware Fine-Tuning. In ECCV, 2024. 2

  72. [80]

    Show-1: Marrying pixel and latent dif- fusion models for text-to-video generation

    David Junhao Zhang, Jay Zhangjie Wu, Jia-Wei Liu, Rui Zhao, Lingmin Ran, Yuchao Gu, Difei Gao, and Mike Zheng Shou. Show-1: Marrying pixel and latent dif- fusion models for text-to-video generation. arXiv preprint arXiv:2309.15818, 2023. 2

  73. [81]

    A tale of two features: Stable diffusion complements dino for zero-shot semantic correspondence

    Junyi Zhang, Charles Herrmann, Junhwa Hur, Luisa Pola- nia Cabrera, Varun Jampani, Deqing Sun, and Ming-Hsuan Yang. A tale of two features: Stable diffusion complements dino for zero-shot semantic correspondence. Advances in Neural Information Processing Systems, 36, 2024. 14

  74. [82]

    Adding conditional control to text-to-image diffusion models

    Lvmin Zhang, Anyi Rao, and Maneesh Agrawala. Adding conditional control to text-to-image diffusion models. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 3836–3847, 2023. 5

  75. [83]

    The unreasonable effectiveness of deep features as a perceptual metric

    Richard Zhang, Phillip Isola, Alexei A Efros, Eli Shecht- man, and Oliver Wang. The unreasonable effectiveness of deep features as a perceptual metric. In Proceedings of the IEEE conference on computer vision and pattern recogni- tion, pages 586–595, 2018. 14

  76. [84]

    I2vgen-xl: High-quality image-to-video synthesis via cascaded diffusion models

    Shiwei Zhang, Jiayu Wang, Yingya Zhang, Kang Zhao, Hangjie Yuan, Zhiwu Qin, Xiang Wang, Deli Zhao, and Jingren Zhou. I2vgen-xl: High-quality image-to-video synthesis via cascaded diffusion models. arXiv preprint arXiv:2311.04145, 2023. 2, 3

  77. [85]

    Pointodyssey: A large-scale synthetic dataset for long-term point tracking

    Yang Zheng, Adam W Harley, Bokui Shen, Gordon Wet- zstein, and Leonidas J Guibas. Pointodyssey: A large-scale synthetic dataset for long-term point tracking. In Proceed- ings of the IEEE/CVF International Conference on Com- puter Vision, pages 19855–19865, 2023. 8

  78. [86]

    Magicvideo: Efficient video generation with latent diffusion models

    Daquan Zhou, Weimin Wang, Hanshu Yan, Weiwei Lv, Yizhe Zhu, and Jiashi Feng. Magicvideo: Efficient video generation with latent diffusion models. arXiv preprint arXiv:2211.11018, 2022. 2 Track4Gen: Teaching Video Diffusion Models to Track Points Improves Video Generation Suppl...

  79. [87]

    To better demonstrate the architecture of the baseline Track4Gen without Refiner , we provide a visualization in Fig

    The first 7 layers follow the structure Conv2d → BatchNorm2d → ReLU, except for the last layer which consists of Conv2d → ReLU. To better demonstrate the architecture of the baseline Track4Gen without Refiner , we provide a visualization in Fig. 10. The figure compares the tra...

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.