REVIEW 3 major objections 5 minor 38 references
Local Attention Transformers for High-Detail Optical Flow Upsampling
T0 review · 3 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read Replacing the standard convex upsampler with a local-attention transformer improves optical flow accuracy across RAFT, GMA, and FlowFormer, with only the final upsampling step changed.
desk verdict The convex-upsampling-as-attention idea is clean and the gains are likely real, but the abstract's 'solely adapting the convex upsampler' overstates the evidence because the GMA number includes a training-scheme change with no control. 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 Transformers for Convex Upsampling (TCU) module, a drop-in replacement for the convex upsampler. It is built on the equivalence between convex upsampling and Neighborhood Attention: the softmax-weighted dot product with low-resolution neighbors is identical in both, so local attention maps can serve as convex masks while their size is decoupled from the number of parameters. The module performs three 2x upsampling steps with mask sizes 9, 7, and 5, concatenates context and image features at each scale, and is applied only to the final refinement iteration's flow, giving that last step its own weights. This machinery carries the argument because each proposed change targets a specific failure mode: larger masks make a correct convex combination more likely to exist, hierarchical upsampling reduces the difficulty of aligning sub-pixels, extra features align flow with edges, and decoupling avoids polluting the final upsampler with noisy intermediate flow estimates.
What would settle it
Run a controlled comparison where the only variable is the upsampler: start all models from identical pre-trained weights, apply the exact same fine-tuning protocol with the same number of iterations and learning rates, and vary only the final upsampling module; if the end-point-error gap disappears, the reported gains come from the training setup rather than from attention-based upsampling.
Extended reading notes
Core claim
The paper's central claim is that convex upsampling, widely used to raise optical flow from one-eighth to full resolution, is best understood and improved as local attention. The authors observe that the softmax-weighted dot product over a sliding window of low-resolution flow, which defines a convex combination, is the same operation as neighborhood attention: both take a dot product between a normalized weight map and local values. They introduce Transformers for Convex Upsampling (TCU), which uses local attention maps as convex masks, allowing larger mask sizes, three hierarchical 2x upsampling steps instead of one 8x step, and the injection of image features at intermediate resolutions. They also decouple the upsampler used for the final refinement iteration from the shared upsampler used for intermediate iterations, and propose a final training stage with interpolation-based augmentations disabled to remove bilinear interpolation artifacts. On the FlyingChairs plus FlyingThings3D training setting, they report reducing the Sintel Clean training end-point-error of RAFT from 1.42 to 1.26, GMA from 1.31 to 1.18, and FlowFormer from 0.94 to 0.90, solely by adapting the upsampler.
Load-bearing premise
The reported improvements assume the comparison models were retrained under exactly the same fine-tuning protocol as the models using the new upsampler, so that the upsampler is the only meaningful difference.
Editorial extensions
If this is right
- Any RAFT-style optical flow model that currently uses the original 8x convex upsampler can adopt TCU in its final refinement step without retraining the rest of the network, so the reported gains are portable.
- Larger convex masks are not merely a parameter-count issue: they increase the chance that a correct high-resolution flow value is representable as a convex combination of low-resolution neighbors, so further gains from even larger masks should appear where memory permits.
- Hierarchical 2x upsampling with multi-scale image features may become the default design for flow upsampling, replacing the single 8x step.
- The -AUG training scheme shows that bilinear interpolation artifacts in augmented training data are baked into model outputs; disabling interpolation-based augmentation at the end sharpens edges and improves clean-dataset accuracy, though it can hurt generalization to blurry targets such as Sintel Final.
- Because the upsampler is a small, largely independent part of the network, its improvements compose with other advances in flow prediction, which explains the consistent gains across RAFT, GMA, and FlowFormer.
Reading between the lines
- The same convex-upsampling-as-attention argument applies to other dense prediction tasks that upsample low-resolution outputs, such as depth estimation, semantic segmentation, or scene flow, where a TCU-style module could improve edge fidelity.
- The paper's 'existence of a convex combination' framing suggests a quantitative diagnostic: one could measure per patch whether the ground-truth high-resolution flow lies in the convex hull of the low-resolution neighborhood, and use that to decide where larger masks help most.
- The authors' caution about cross-dataset generalization implies a testable prediction: on blurry datasets like Sintel Final, sharp edge alignment from larger masks will hurt unless the training data also contains blur, so the optimal mask size may be dataset-dependent.
- The reported gains assume the baselines were fine-tuned under the same protocol; a direct re-run with identical pre-training, learning rate, and iteration counts would settle whether the upsampler alone, rather than training details, is responsible for the improvement.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Transformers for Convex Upsampling (TCU), a drop-in replacement for the convex upsampler used in RAFT-style optical flow networks. The method reformulates convex upsampling as local (neighborhood) attention, which decouples mask size from parameter count and enables hierarchical 2x upsampling steps with multi-scale image features. The authors also propose decoupling the final upsampler's weights and an additional training phase (-AUG) that disables interpolation-based augmentations. On the C+T training setting, they report reduced Sintel Clean training-split EPE for RAFT (1.42 to 1.26), GMA (1.31 to 1.18), and FlowFormer (0.94 to 0.90), attributing the gains to adapting the convex upsampler.
Significance. The core reformulation of convex upsampling as neighborhood attention is elegant and technically plausible; it cleanly decouples mask size from parameter count and makes hierarchical upsampling natural. The paper addresses an under-explored component of optical flow pipelines and provides experiments across three architectures, with a useful honesty about the risk that the changes can hurt cross-dataset generalization (Section 6). However, the central attribution claim is weakened by confounds: the best GMA number includes a training-scheme change, the FlowFormer comparison uses a reduced configuration, and the baseline protocol is not specified. With additional control experiments or a more cautious claim, the contribution would be valuable.
major comments (3)
- [Abstract; Section 4; Table 3] The abstract's headline for GMA (1.31 to 1.18) is the GMA+ALL-aug row of Table 3, but that row includes the -AUG training scheme defined in Section 4 (an additional 40K fine-tuning phase with interpolation-based augmentations disabled), not just a change of the upsampler. No comparison is provided for GMA with the original convex upsampler under the -AUG protocol, and Table 2 shows -AUG alone changes Sintel Clean EPE by 0.03 for the TCU model, so the 0.13 improvement cannot be attributed solely to the upsampler. Moreover, the three headline numbers come from different configurations: RAFT+ALL, GMA+ALL-aug, and FlowFormer+ALL, so the claim 'by solely adapting the convex upsampler' is not supported by the reported experiments.
- [Section 5; Table 3] It is unclear whether the 'recomputed' baselines in Table 3 (RAFT, GMA, FlowFormer) were re-trained under the same fine-tuning protocol described in Section 5 (100K iterations, learning rates 1e-4/2e-4, batch size 3) or are simply released checkpoints re-evaluated. If the latter, the improvement of the proposed models over these baselines could be partly an effect of additional fine-tuning. The paper should state explicitly how each baseline row was produced; if they are re-trained, give the exact protocol, and if they are not, a control fine-tuning of the original upsampler under the same protocol is needed.
- [Table 3 (FlowFormer rows and note)] The FlowFormer+ALL result is reported with the caveat that the transformer models are not fine-tuned and only scales 1/4 and 1/8 are used because scale 1/2 cannot be obtained. This means the comparison is not a clean replacement of the upsampler while keeping everything else fixed. Since the abstract cites the FlowFormer improvement as evidence for the upsampler's effect, the experiment should either be run with the same feature scales and fine-tuning protocol as the baseline, or the claim should be restricted to the configurations that are actually matched.
minor comments (5)
- [Section 3.1, Eqs. (12)-(13)] The notation for mask dimensions is inconsistent: Eq. (12) states masks are in R^{f^2 m^2}, while Eq. (13) writes R^{f^2*m*m} and then equates it to R^{f^2 m^2}; please use a single consistent representation throughout.
- [Section 5.2, paragraph 2] The statement that 'all our proposed changes result in improvements' is contradicted by Table 2, where +DC+FT (1.24 Sintel Clean, 9.53 FlyingThings3D) is worse than +DC alone (1.23 and 9.38); please qualify this claim.
- [Section 4] The claim that 'all public top submissions to the Sintel leaderboard show bilinear interpolation artifacts' is made without a citation or a supporting figure; please add evidence or soften the claim.
- [Table 3, FlowFormer note] The note about not fine-tuning the transformer models is important enough to be discussed in the main text, not only as a table footnote, because it directly affects the interpretation of the FlowFormer comparison.
- [References] Reference [7] for Neighborhood Attention is missing the publication venue; please provide the full citation.
Circularity Check
No significant circularity: the reported gains are externally benchmarked and the upsampler/attention equivalence is explicit, not a hidden input-output identity.
full rationale
The paper's central claim is empirical: replacing the last-iteration convex upsampler with a local-attention-based upsampler reduces end-point-error on standard optical-flow benchmarks. The method states in Equations 15 and 26 that the new aggregation is algebraically equivalent to convex upsampling, so the attention reformulation is a transparent design motivation rather than a recycled result. The comparisons are made against public baselines (RAFT, GMA, FlowFormer) on FlyingThings3D, Sintel, and KITTI, using published training setups, and the proposed module is trained end-to-end on those benchmarks. There are no load-bearing self-citations: the cited Neighborhood Attention Transformer [7] and MS-RAFT(+) [12,13] are independent prior works by other groups, and the paper invokes no same-author uniqueness theorem to force its choice. The empirical caveats present in the paper's own discussion, such as the -AUG training scheme being an additional 40K fine-tuning phase rather than a pure upsampler change, and the recomputation protocol for baselines not being fully specified, are experimental attribution and reproducibility concerns, not circularity: no fitted parameter is renamed as a prediction, and no definitional equivalence between input and output is used to produce the claimed result. The derivation chain is therefore self-contained with respect to circularity.
Assumptions & free parameters
free parameters (10)
- mask sizes for hierarchical upsampling =
(9, 7, 5)
- number of hierarchical upsampling steps =
3
- number of Neighborhood Attention Transformer blocks =
2
- feature dimension D per scale =
128, 64, 32
- head dimensionality =
32
- fine-tuning learning rates =
1e-4 pretrained, 2e-4 new upsampler
- fine-tuning iterations =
100,000
- additional -AUG iterations =
40,000
- batch size =
3
- edge-detection threshold and bin width for detail analysis =
8, 0.02
assumptions (4)
- domain assumption Pre-trained RAFT, GMA, and FlowFormer checkpoints are available and used as initialization for all fine-tuning runs.
- domain assumption The standard FlyingChairs + FlyingThings3D (C+T) training protocol, including the standard augmentation pipeline, is used and is sufficient to produce the reported baseline numbers.
- standard math Softmax-normalized local attention weights provide a valid convex combination, making attention maps a drop-in replacement for convex masks.
- domain assumption End-point error (EPE) on Sintel Clean train and FlyingThings3D test is an acceptable proxy for optical flow quality, and single-run results are treated as meaningful comparisons.
Cite this review
Pith. "Pith review of Local Attention Transformers for High-Detail Optical Flow Upsampling." pith.science (2026). https://pith.science/paper/3ZY7BUIG
@misc{pith2026241206439,
author = {Pith},
title = {Pith review of: Local Attention Transformers for High-Detail Optical Flow Upsampling},
year = {2026},
howpublished = {\url{https://pith.science/paper/3ZY7BUIG}},
note = {Machine review of arXiv:2412.06439}
}
read the original abstract
Most recent works on optical flow use convex upsampling as the last step to obtain high-resolution flow. In this work, we show and discuss several issues and limitations of this currently widely adopted convex upsampling approach. We propose a series of changes, in an attempt to resolve current issues. First, we propose to decouple the weights for the final convex upsampler, making it easier to find the correct convex combination. For the same reason, we also provide extra contextual features to the convex upsampler. Then, we increase the convex mask size by using an attention-based alternative convex upsampler; Transformers for Convex Upsampling. This upsampler is based on the observation that convex upsampling can be reformulated as attention, and we propose to use local attention masks as a drop-in replacement for convex masks to increase the mask size. We provide empirical evidence that a larger mask size increases the likelihood of the existence of the convex combination. Lastly, we propose an alternative training scheme to remove bilinear interpolation artifacts from the model output. Our proposed ideas could theoretically be applied to almost every current state-of-the-art optical flow architecture. On the FlyingChairs + FlyingThings3D training setting we reduce the Sintel Clean training end-point-error of RAFT from 1.42 to 1.26, GMA from 1.31 to 1.18, and that of FlowFormer from 0.94 to 0.90, by solely adapting the convex upsampler.
Figures
Figures from the paper (2 more)
Reference graph
Works this paper leans on
-
[1]
John Bridle. Training stochastic model recognition algo- rithms as networks can lead to maximum mutual information estimation of parameters. Advances in neural information processing systems, 2, 1989
work page 1989
-
[2]
A naturalistic open source movie for opti- cal flow evaluation
Daniel J Butler, Jonas Wulff, Garrett B Stanley, and Michael J Black. A naturalistic open source movie for opti- cal flow evaluation. In Computer Vision–ECCV 2012: 12th European Conference on Computer Vision, Florence, Italy, October 7-13, 2012, Proceedings, Part VI 12 , pages 611–
2012
-
[3]
An image is worth 16x16 words: Trans- formers 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, et al. An image is worth 16x16 words: Trans- formers for image recognition at scale. arXiv preprint arXiv:2010.11929, 2020
arXiv 2010
-
[4]
Flownet: Learning optical flow with convolutional networks
Alexey Dosovitskiy, Philipp Fischer, Eddy Ilg, Philip Hausser, Caner Hazirbas, Vladimir Golkov, Patrick Van Der Smagt, Daniel Cremers, and Thomas Brox. Flownet: Learning optical flow with convolutional networks. In Pro- ceedings of the IEEE international conference on computer vision, pages 2758–2766, 2015
work page 2015
-
[5]
Cognitron: A self-organizing mul- tilayered neural network
Kunihiko Fukushima. Cognitron: A self-organizing mul- tilayered neural network. Biological cybernetics , 20(3- 4):121–136, 1975
work page 1975
-
[6]
Rafael C Gonzalez. Digital image processing. Pearson edu- cation india, 2009
work page 2009
-
[7]
Neighborhood attention transformer
Ali Hassani, Steven Walton, Jiachen Li, Shen Li, and Humphrey Shi. Neighborhood attention transformer. 2022
work page 2022
-
[8]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceed- ings of the IEEE conference on computer vision and pattern recognition, pages 770–778, 2016
2016
Show all 38 references
-
[9]
Flowformer: A transformer architecture for optical flow
Zhaoyang Huang, Xiaoyu Shi, Chao Zhang, Qiang Wang, Ka Chun Cheung, Hongwei Qin, Jifeng Dai, and Hongsheng Li. Flowformer: A transformer architecture for optical flow. arXiv preprint arXiv:2203.16194, 2022
2022 arXiv
-
[10]
A lightweight optical flow cnn—revisiting data fidelity and reg- ularization
Tak-Wai Hui, Xiaoou Tang, and Chen Change Loy. A lightweight optical flow cnn—revisiting data fidelity and reg- ularization. IEEE transactions on pattern analysis and ma- chine intelligence, 43(8):2555–2569, 2020
2020
-
[11]
Flownet 2.0: Evolu- tion of optical flow estimation with deep networks
Eddy Ilg, Nikolaus Mayer, Tonmoy Saikia, Margret Keuper, Alexey Dosovitskiy, and Thomas Brox. Flownet 2.0: Evolu- tion of optical flow estimation with deep networks. In Pro- ceedings of the IEEE conference on computer vision and pat- tern recognition, pages 2462–2470, 2017
2017
-
[12]
High resolution multi-scale raft (robust vision challenge 2022)
Azin Jahedi, Maximilian Luz, Lukas Mehl, Marc Rivinius, and Andr´es Bruhn. High resolution multi-scale raft (robust vision challenge 2022). arXiv preprint arXiv:2210.16900 , 2022
2022 arXiv
-
[13]
Multi-scale raft: Combining hierarchical concepts for learning-based optical flow estimation
Azin Jahedi, Lukas Mehl, Marc Rivinius, and Andr ´es Bruhn. Multi-scale raft: Combining hierarchical concepts for learning-based optical flow estimation. In 2022 IEEE In- ternational Conference on Image Processing (ICIP) , pages 1236–1240. IEEE, 2022
2022
-
[14]
Learning to estimate hidden motions with global motion aggregation
Shihao Jiang, Dylan Campbell, Yao Lu, Hongdong Li, and Richard Hartley. Learning to estimate hidden motions with global motion aggregation. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 9772– 9781, 2021
2021
-
[15]
Progressive growing of gans for improved quality, stability, and variation
Tero Karras, Timo Aila, Samuli Laine, and Jaakko Lehtinen. Progressive growing of gans for improved quality, stability, and variation. arXiv preprint arXiv:1710.10196, 2017
2017 arXiv
-
[16]
The hci benchmark suite: Stereo and flow ground truth with uncertainties for urban autonomous driv- ing
Daniel Kondermann, Rahul Nair, Katrin Honauer, Karsten Krispin, Jonas Andrulis, Alexander Brock, Burkhard Gusse- feld, Mohsen Rahimimoghaddam, Sabine Hofmann, Claus Brenner, et al. The hci benchmark suite: Stereo and flow ground truth with uncertainties for urban autonomous dr...
2016
-
[17]
Swin transformer: Hierarchical vision transformer using shifted windows
Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining Guo. Swin transformer: Hierarchical vision transformer using shifted windows. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 10012–10022, 2021
2021
-
[18]
Fully convolutional networks for semantic segmentation
Jonathan Long, Evan Shelhamer, and Trevor Darrell. Fully convolutional networks for semantic segmentation. In Pro- ceedings of the IEEE conference on computer vision and pat- tern recognition, pages 3431–3440, 2015
2015
-
[19]
A large dataset to train convolutional networks for disparity, optical flow, and scene flow estimation
Nikolaus Mayer, Eddy Ilg, Philip Hausser, Philipp Fischer, Daniel Cremers, Alexey Dosovitskiy, and Thomas Brox. A large dataset to train convolutional networks for disparity, optical flow, and scene flow estimation. In Proceedings of the IEEE conference on computer vision and ...
2016
-
[20]
Spring: A high-resolution high- detail dataset and benchmark for scene flow, optical flow and stereo, 2023
Lukas Mehl, Jenny Schmalfuss, Azin Jahedi, Yaroslava Nali- vayko, and Andr ´es Bruhn. Spring: A high-resolution high- detail dataset and benchmark for scene flow, optical flow and stereo, 2023
2023
-
[21]
Object scene flow for au- tonomous vehicles
Moritz Menze and Andreas Geiger. Object scene flow for au- tonomous vehicles. In Proceedings of the IEEE conference on computer vision and pattern recognition , pages 3061– 3070, 2015
2015
-
[22]
Optical flow estima- tion using a spatial pyramid network
Anurag Ranjan and Michael J Black. Optical flow estima- tion using a spatial pyramid network. In Proceedings of the IEEE conference on computer vision and pattern recogni- tion, pages 4161–4170, 2017
2017
-
[23]
Kornia: an open source differentiable computer vision library for pytorch
Edgar Riba, Dmytro Mishkin, Daniel Ponsa, Ethan Rublee, and Gary Bradski. Kornia: an open source differentiable computer vision library for pytorch. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 3674–3683, 2020
2020
-
[24]
Real-time single image and video super-resolution using an efficient sub-pixel convolutional neural network
Wenzhe Shi, Jose Caballero, Ferenc Husz ´ar, Johannes Totz, Andrew P Aitken, Rob Bishop, Daniel Rueckert, and Zehan Wang. Real-time single image and video super-resolution using an efficient sub-pixel convolutional neural network. In Proceedings of the IEEE conference on compu...
2016
-
[25]
Flowformer++: Masked cost volume autoen- coding for pretraining optical flow estimation.arXiv preprint arXiv:2303.01237, 2023
Xiaoyu Shi, Zhaoyang Huang, Dasong Li, Manyuan Zhang, Ka Chun Cheung, Simon See, Hongwei Qin, Jifeng Dai, and Hongsheng Li. Flowformer++: Masked cost volume autoen- coding for pretraining optical flow estimation.arXiv preprint arXiv:2303.01237, 2023
2023 arXiv
-
[26]
Craft: Cross- attentional flow transformer for robust optical flow
Xiuchao Sui, Shaohua Li, Xue Geng, Yan Wu, Xinxing Xu, Yong Liu, Rick Goh, and Hongyuan Zhu. Craft: Cross- attentional flow transformer for robust optical flow. In Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 17602–17611, 2022
2022
-
[27]
Pwc-net: Cnns for optical flow using pyramid, warping, and cost volume
Deqing Sun, Xiaodong Yang, Ming-Yu Liu, and Jan Kautz. Pwc-net: Cnns for optical flow using pyramid, warping, and cost volume. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 8934–8943, 2018
2018
-
[28]
Models matter, so does training: An empirical study of cnns for optical flow estimation
Deqing Sun, Xiaodong Yang, Ming-Yu Liu, and Jan Kautz. Models matter, so does training: An empirical study of cnns for optical flow estimation. IEEE transactions on pattern analysis and machine intelligence, 42(6):1408–1423, 2019
2019
-
[29]
Computer vision: algorithms and applica- tions
Richard Szeliski. Computer vision: algorithms and applica- tions. Springer Nature, 2022
2022
-
[30]
Raft: Recurrent all-pairs field transforms for optical flow
Zachary Teed and Jia Deng. Raft: Recurrent all-pairs field transforms for optical flow. In European conference on com- puter vision, pages 402–419. Springer, 2020
2020
-
[31]
Attention is all you need
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszko- reit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. Advances in neural information processing systems, 30, 2017
2017
-
[32]
Displacement-invariant matching cost learning for accurate optical flow estimation
Jianyuan Wang, Yiran Zhong, Yuchao Dai, Kaihao Zhang, Pan Ji, and Hongdong Li. Displacement-invariant matching cost learning for accurate optical flow estimation. Advances in Neural Information Processing Systems, 33, 2020
2020
-
[33]
Gmflow: Learning optical flow via global matching
Haofei Xu, Jing Zhang, Jianfei Cai, Hamid Rezatofighi, and Dacheng Tao. Gmflow: Learning optical flow via global matching. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 8121– 8130, 2022
2022
-
[34]
V olumetric correspon- dence networks for optical flow
Gengshan Yang and Deva Ramanan. V olumetric correspon- dence networks for optical flow. Advances in neural infor- mation processing systems, 32, 2019
2019
-
[35]
Hierarchical discrete distribution decomposition for match density esti- mation
Zhichao Yin, Trevor Darrell, and Fisher Yu. Hierarchical discrete distribution decomposition for match density esti- mation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 6044–6053, 2019
2019
-
[36]
Separable flow: Learning motion cost volumes for optical flow estimation
Feihu Zhang, Oliver J Woodford, Victor Adrian Prisacariu, and Philip HS Torr. Separable flow: Learning motion cost volumes for optical flow estimation. In Proceedings of the IEEE/CVF International Conference on Computer Vision , pages 10807–10817, 2021
2021
-
[37]
Maskflownet: Asymmetric feature matching with learnable occlusion mask
Shengyu Zhao, Yilun Sheng, Yue Dong, Eric I Chang, Yan Xu, et al. Maskflownet: Asymmetric feature matching with learnable occlusion mask. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 6278–6287, 2020
2020
-
[38]
Global matching with overlapping at- tention for optical flow estimation
Shiyu Zhao, Long Zhao, Zhixing Zhang, Enyu Zhou, and Dimitris Metaxas. Global matching with overlapping at- tention for optical flow estimation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 17592–17601, 2022
2022
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.