REVIEW 3 major objections 6 minor 49 references
ORFormer: Occlusion-Robust Transformer for Accurate Facial Landmark Detection
T0 review · 3 major / 6 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read A transformer that detects and repairs occluded facial patches reaches state-of-the-art landmark accuracy.
desk verdict The messenger-token mechanism is a real architectural contribution, but the headline SOTA number is confounded by a loss-function change and needs a missing control before the central claim is clean. 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 messenger token is the load-bearing object: for each image patch $X_i$ a learnable token $M_i$ runs cross-attention over all patch tokens except $X_i$ (attention score set to 0 at the diagonal). The difference between the resulting messenger embedding and the patch's own embedding, passed through a linear layer and sigmoid, gives the per-patch occlusion probability $\alpha$. That $\alpha$ is used twice: multiplicatively in the next layer's cross-attention to stop messengers from borrowing features from already-occluded patches, and as the interpolation weight in the final feature recovery $Z_{\mathrm{rec}} = (1-\alpha)\otimes Z_I + \alpha\otimes Z_M$, where $Z_I$ and $Z_M$ are codebook-quantized features from regular and messenger embeddings. The codebook and decoder are pre-trained on unoccluded faces via vector quantization and frozen, so the recovery step draws on a prior of what intact faces look like.
What would settle it
Feed ORFormer a set of faces with known synthetic occlusion masks and compare its predicted alpha map to the masks: if visibly covered patches do not receive high alpha, or if forcing alpha to zero (no recovery) does not raise NME on the WFLW occlusion subset, the claimed occlusion-detection and recovery mechanism is not what drives the accuracy gain.
Extended reading notes
Core claim
The central claim is that a pair of embeddings per patch — the regular self-attended token and a messenger token that deliberately excludes the patch itself — carries enough information to locate occluded regions and to repair them. ORFormer quantifies the discrepancy between the two embeddings with a squared-difference head, converts it into a patch-wise occlusion probability $\alpha$ in $[0,1]$, and uses $\alpha$ to form a convex combination $Z_{\mathrm{rec}} = (1-\alpha)\otimes Z_I + \alpha\otimes Z_M$ of the regular and messenger quantized features before decoding heatmaps. Because the messenger gathers evidence only from visible patches, the recovered representation is robust to corruption; because $\alpha$ is predicted from the input, no ground-truth occlusion labels are required. On WFLW, COFW, and the 300W challenging subset, the method reports the best normalized mean error among the compared methods, and on the WFLW occlusion subset it gains more than the full-set average over the VQVAE and CodeFormer baselines.
Load-bearing premise
The load-bearing premise is that the gap between a patch's own embedding and its messenger embedding reliably marks occluded patches, yet that occlusion map is never supervised with ground-truth labels, so a wrong alpha would make the recovery step hurt rather than help.
Editorial extensions
If this is right
- Any heatmap-based facial landmark detector can adopt ORFormer's recovered heatmaps as auxiliary inputs; in the paper both ADNet and STAR improve under their own loss functions, with the largest gains on occlusion-heavy subsets.
- The messenger mechanism needs no occlusion annotations at training or test time, so it transfers to datasets (like WFLW) that do not label occlusions.
- Compared with a plain ViT, ORFormer adds about 10% more parameters, and the separate attention streams keep the extra compute linear in the token count.
- Against a matched-parameter hourglass baseline, the full pipeline uses 20.6% fewer mult-adds and 15.9% less inference time while improving NME.
- The strongest configuration comes from training the whole landmark model from scratch with simple L2 heatmap loss plus NME landmark loss, rather than fine-tuning only the merging block.
Reading between the lines
- Because alpha is never supervised with occlusion masks, a natural extension is to add a weak or self-supervised loss on alpha using COFW's existing per-landmark occlusion labels; the paper's own numbers suggest this could further close the gap on the occlusion subset.
- The same messenger-token design could apply to other partially occluded recognition tasks, such as object keypoint detection or pose estimation, wherever a quantized prior over intact appearances can be pre-trained.
- The method's robustness to occlusion types absent from training (sunglasses, masks, hands) is untested; a synthetic-occlusion stress test with varying rectangle sizes could show whether the learned alpha generalizes beyond the augmentation used.
- The paper's stated limitation that deformed facial features still hurt suggests a possible boundary: the messenger prior is a prior over intact geometry, so appearance deformation may be harder to model than simple occlusion.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes ORFormer, a ViT-based module for facial landmark detection under partial occlusion. Each image patch token is paired with a learnable messenger token that attends to all patches except its own; an occlusion detection head derives a per-patch occlusion map alpha from the squared difference between the regular and messenger embeddings, and a feature-recovery step merges the two quantized feature streams with alpha. The recovered features are decoded into edge heatmaps, which are concatenated into existing FLD backbones (ADNet/STAR). Experiments on WFLW, COFW, and 300W report state-of-the-art or competitive NME/FR/AUC, with ablation studies showing consistent gains when ORFormer is added to STAR under the same loss, and efficiency gains over a parameter-matched five-stack Hourglass.
Significance. If the empirical attribution is sound, the paper makes a useful contribution: the messenger-token design is a generic mechanism for detecting and recovering corrupted or occluded patches, and the controlled comparison in Table 6 (STAR 4.03 -> 3.92 on WFLW full, 4.82 -> 4.66 on the occlusion subset, with matching loss) is direct evidence that the mechanism helps. The paper is also transparent about implementation details, reports reproduced baselines, and includes ablations for the distance function, integration strategy, and loss choices. The main significance concern is whether the headline Table 1 numbers are attributable to ORFormer or to the change of loss function, and whether the cross-attention 'exclusion' is implemented as described.
major comments (3)
- [§3.2, Eqs. (5)–(6) and Eq. (8)] The claimed exclusion of the corresponding patch is not implemented by the equations as written. Setting Across(Q_M,K_X)_{i,i}=0 before softmax assigns a finite score of 0; after softmax, the own-patch token still receives a positive attention weight unless all other scores are also 0. Similarly, Eq. (8) multiplies the cross-attention score by (1-alpha_j) rather than applying a true mask, so the messenger token does not strictly aggregate 'features from all but its patch.' Please either replace the zero assignment with -inf masking (or the equivalent) or clarify that the intended operation is a score discount rather than exclusion, and confirm that the reported experiments use the described operation.
- [§4.3 and §6.2.2, Tables 1 and 10] The headline WFLW NME of 3.86 in Table 1 is produced by the L2+NME loss configuration listed in Table 10, whereas the reproduced STAR baseline (marked with a dagger, 4.03) uses STAR's AWing+STAR losses. The paper never trains the same four-stack Hourglass backbone without ORFormer under the L2+NME loss, so the 3.86 number, and the state-of-the-art claim built on it, cannot be attributed to ORFormer rather than to the loss change. Please add the missing no-ORFormer L2+NME control, or report the SOTA comparison only with matched loss functions, as in Table 6, where the ORFormer gain is 4.03 to 3.92.
- [§3.2, Eq. (7), and §4.4] The occlusion map alpha is load-bearing for feature recovery in Eq. (9), yet it is never quantitatively validated against ground-truth occlusion information. COFW provides per-landmark occlusion labels and WFLW provides subset labels, but the paper only visualizes alpha (Fig. 6). Because alpha is an unconstrained learned signal, please add a direct evaluation of alpha against occlusion annotations (e.g., patch-level precision/recall or AUC, or NME grouped by alpha threshold) to support the claim that ORFormer 'detects non-visible regions'; at minimum, report an ablation where alpha is replaced by a constant or by oracle-like values.
minor comments (6)
- [§3.2, Eq. (10)] In Eq. (10), S_k is a code index, not a one-hot vector; the expression '-S_k log(hat S_k)' should be written as '-log(hat S_{k,S_k})' or with explicit one-hot/cross-entropy notation.
- [§3.1, Eq. (1)] The subscript notation in Eq. (1) is inconsistent: 'Z i,j' and 'Z_{i,j}' appear side by side; please use a single typesetting for subscripts throughout.
- [Acknowledgements] The heading 'Ackknowledgements' contains a typo and should read 'Acknowledgements'.
- [§4.4 and §6.2.2, Tables 4 and 11] Tables 4 and 11 are identical duplicate ablation tables; please keep only one copy and cross-reference the other.
- [Table 4 caption] The caption contains 'the he landmark NME loss'; it should read 'the landmark NME loss'.
- [§6.2.3, Table 12] The term 'mult-add' is unclear; please use 'MACs' or 'multiply-accumulate operations' for precision.
Circularity Check
No significant circularity: ORFormer is a standard two-stage supervised pipeline whose heatmap and landmark predictions are evaluated on held-out WFLW, COFW, and 300W test sets; no prediction reduces by construction to a fitted input or to a self-citation.
full rationale
ORFormer's derivation chain is an empirical two-stage training pipeline rather than a formal derivation with hidden inputs. Section 3.1 trains a quantized heatmap generator on unoccluded faces using edge heatmaps derived from landmark annotations. Section 3.2 freezes the codebook and decoder, trains ORFormer to predict code sequences SI and SM, and refines them with the occlusion map alpha (Eqs. 4-11), where the code target S is 'obtained from the pre-trained heatmap generator.' This target is a fixed teacher-student / denoising supervision signal, not an evaluation prediction: the paper's claims are tested by inserting the recovered heatmaps into existing FLD methods and measuring NME, FR, and AUC on held-out test sets (Tables 1, 5, and 6). The final metrics therefore do not reduce by construction to the training target. Eq. (7) defines alpha as a learned function of the squared difference between regular and messenger embeddings; alpha is not defined in terms of the landmark labels or the final NME, and the paper never claims alpha is supervised by ground-truth occlusion labels. The method's reliance on a well-trained quantized heatmap generator is acknowledged as a limitation in Section 6.2.4, but that is an external architectural dependency, not circular reasoning. The Table 1 comparison with STAR uses a different loss (L2 plus NME versus STAR loss), as Table 10 makes explicit; this is an experimental attribution concern, not a circularity concern, and the controlled comparison under the same STAR loss (Table 6) still shows gains. No load-bearing self-citations, imported uniqueness theorems, or ansatz-via-citation steps appear; CodeFormer and VQVAE are external baselines, not self-citations. Overall, the derivation is self-contained and the central claim is empirically falsifiable.
Assumptions & free parameters
free parameters (5)
- beta =
0.25
- lambda_latent =
100
- lambda_img =
50
- codebook size N =
2048
- random occlusion probability =
40%
assumptions (5)
- ad hoc to paper The squared difference between regular embedding X' and messenger embedding M', after a learned linear layer and sigmoid, yields a reliable per-patch occlusion probability alpha.
- domain assumption The messenger token, attending to all patches except its own, provides an occlusion-free estimate of the patch's features.
- domain assumption The pre-trained VQ codebook encodes a prior over unoccluded face heatmaps sufficient to recover occluded patches.
- domain assumption Edge heatmaps defined by Wu et al. [40] capture sufficient facial structure for landmark detection.
- domain assumption The ground-truth code sequence S from the pre-trained heatmap generator is a valid target for ORFormer even while the encoder E is fine-tuned.
invented entities (1)
-
Messenger token
Cite this review
Pith. "Pith review of ORFormer: Occlusion-Robust Transformer for Accurate Facial Landmark Detection." pith.science (2026). https://pith.science/paper/PY2JWSIZ
@misc{pith2026241213174,
author = {Pith},
title = {Pith review of: ORFormer: Occlusion-Robust Transformer for Accurate Facial Landmark Detection},
year = {2026},
howpublished = {\url{https://pith.science/paper/PY2JWSIZ}},
note = {Machine review of arXiv:2412.13174}
}
read the original abstract
Although facial landmark detection (FLD) has gained significant progress, existing FLD methods still suffer from performance drops on partially non-visible faces, such as faces with occlusions or under extreme lighting conditions or poses. To address this issue, we introduce ORFormer, a novel transformer-based method that can detect non-visible regions and recover their missing features from visible parts. Specifically, ORFormer associates each image patch token with one additional learnable token called the messenger token. The messenger token aggregates features from all but its patch. This way, the consensus between a patch and other patches can be assessed by referring to the similarity between its regular and messenger embeddings, enabling non-visible region identification. Our method then recovers occluded patches with features aggregated by the messenger tokens. Leveraging the recovered features, ORFormer compiles high-quality heatmaps for the downstream FLD task. Extensive experiments show that our method generates heatmaps resilient to partial occlusions. By integrating the resultant heatmaps into existing FLD methods, our method performs favorably against the state of the arts on challenging datasets such as WFLW and COFW.
Figures
Figures from the paper (8 more)
Reference graph
Works this paper leans on
-
[1]
Training deep networks for facial ex- pression recognition with crowd-sourced label distribution
Emad Barsoum, Cha Zhang, Cristian Canton Ferrer, and Zhengyou Zhang. Training deep networks for facial ex- pression recognition with crowd-sourced label distribution. In ACM international conference on multimodal interaction,
-
[2]
Subpixel heatmap regression for facial landmark local- ization
Adrian Bulat, Enrique Sanchez, and Georgios Tzimiropou- los. Subpixel heatmap regression for facial landmark local- ization. arXiv preprint arXiv:2111.02360, 2021. 2
arXiv 2021
-
[3]
Robust face landmark estimation under occlusion
Xavier P Burgos-Artizzu, Pietro Perona, and Piotr Doll ´ar. Robust face landmark estimation under occlusion. In ICCV,
-
[4]
Xuanyi Dong, Shoou-I Yu, Xinshuo Weng, Shih-En Wei, Yi Yang, and Yaser Sheikh. Supervision-by-registration: An un- supervised approach to improve the precision of facial land- mark detectors. In CVPR, 2018. 2
work page 2018
-
[5]
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. 1, 3, 8
arXiv 2010
-
[6]
Taming transformers for high-resolution image synthesis
Patrick Esser, Robin Rombach, and Bjorn Ommer. Taming transformers for high-resolution image synthesis. In CVPR,
-
[7]
Wing loss for robust facial landmark localisation with convolutional neural networks
Zhen-Hua Feng, Josef Kittler, Muhammad Awais, Patrik Hu- ber, and Xiao-Jun Wu. Wing loss for robust facial landmark localisation with convolutional neural networks. In CVPR,
-
[8]
Pfld: A practical facial landmark detector
Xiaojie Guo, Siyuan Li, Jinke Yu, Jiawan Zhang, Jiayi Ma, Lin Ma, Wei Liu, and Haibin Ling. Pfld: A practical facial landmark detector. arXiv preprint arXiv:1902.10859, 2019. 1, 2
arXiv 1902
Show all 49 references
-
[9]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR,
-
[10]
6d rotation representation for unconstrained head pose estimation
Thorsten Hempel, Ahmed A Abdelrahman, and Ayoub Al- Hamadi. 6d rotation representation for unconstrained head pose estimation. In ICIP, 2022. 1
2022
-
[11]
Adnet: Leveraging error-bias towards nor- mal direction in face alignment
Yangyu Huang, Hao Yang, Chong Li, Jongyoo Kim, and Fangyun Wei. Adnet: Leveraging error-bias towards nor- mal direction in face alignment. In ICCV, 2021. 1, 2, 6, 7, 10, 12, 13
2021
-
[12]
Pixel-in-pixel net: Towards efficient facial landmark detection in the wild
Haibo Jin, Shengcai Liao, and Ling Shao. Pixel-in-pixel net: Towards efficient facial landmark detection in the wild. IJCV, 2021. 2, 6, 7, 10
2021
-
[13]
Face recognition based on facial landmark detection
Aniwat Juhong and Chuchart Pintavirooj. Face recognition based on facial landmark detection. InBiomedical Engineer- ing International Conference, 2017. 1
2017
-
[14]
Real-time eye tracking for bare and sunglasses-wearing faces for augmented reality 3d head- up displays
Dongwoo Kang and Lin Ma. Real-time eye tracking for bare and sunglasses-wearing faces for augmented reality 3d head- up displays. IEEE Access, 2021. 1
2021
-
[15]
Adam: A method for stochastic optimization
Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980 ,
-
[16]
Luvli face alignment: Esti- mating landmarks’ location, uncertainty, and visibility like- lihood
Abhinav Kumar, Tim K Marks, Wenxuan Mou, Ye Wang, Michael Jones, Anoop Cherian, Toshiaki Koike-Akino, Xi- aoming Liu, and Chen Feng. Luvli face alignment: Esti- mating landmarks’ location, uncertainty, and visibility like- lihood. In CVPR, 2020. 2, 6, 10
2020
-
[17]
Hih: Towards more accurate face alignment via heatmap in heatmap
Xing Lan, Qinghao Hu, Qiang Chen, Jian Xue, and Jian Cheng. Hih: Towards more accurate face alignment via heatmap in heatmap. arXiv preprint arXiv:2104.03100 ,
-
[18]
Towards accurate facial landmark detection via cascaded transformers
Hui Li, Zidong Guo, Seon-Min Rhee, Seungju Han, and Jae- Joon Han. Towards accurate facial landmark detection via cascaded transformers. In CVPR, 2022. 2
2022
-
[19]
Repformer: Refinement pyramid transformer for robust facial landmark detection
Jinpeng Li, Haibo Jin, Shengcai Liao, Ling Shao, and Pheng- Ann Heng. Repformer: Refinement pyramid transformer for robust facial landmark detection. In IJCAI, 2022. 2, 6, 7, 10
2022
-
[20]
Cascaded iterative transformer for jointly predicting facial landmark, occlusion probability and head pose
Yaokun Li, Guang Tan, and Chao Gou. Cascaded iterative transformer for jointly predicting facial landmark, occlusion probability and head pose. IJCV, 2024. 2
2024
-
[21]
Sgdr: Stochas- tic gradient descent with warm restarts
Ilya Loshchilov and Frank Hutter. Sgdr: Stochas- tic gradient descent with warm restarts. arXiv preprint arXiv:1608.03983, 2016. 9
2016 arXiv
-
[22]
Robust facial landmark detection via a fully-convolutional local- global context network
Daniel Merget, Matthias Rock, and Gerhard Rigoll. Robust facial landmark detection via a fully-convolutional local- global context network. In CVPR, 2018. 3
2018
-
[23]
Direct shape regression net- works for end-to-end face alignment
Xin Miao, Xiantong Zhen, Xianglong Liu, Cheng Deng, Vas- silis Athitsos, and Heng Huang. Direct shape regression net- works for end-to-end face alignment. In CVPR, 2018. 2
2018
-
[24]
Recurrence without recurrence: Stable video landmark detection with deep equilibrium models
Paul Micaelli, Arash Vahdat, Hongxu Yin, Jan Kautz, and Pavlo Molchanov. Recurrence without recurrence: Stable video landmark detection with deep equilibrium models. In CVPR, 2023. 2, 6, 7, 10
2023
-
[25]
Going deeper in facial expression recognition using deep neural networks
Ali Mollahosseini, David Chan, and Mohammad H Mahoor. Going deeper in facial expression recognition using deep neural networks. In WACV, 2016. 1
2016
-
[26]
Stacked hour- glass networks for human pose estimation
Alejandro Newell, Kaiyu Yang, and Jia Deng. Stacked hour- glass networks for human pose estimation. In ECCV, 2016. 2, 6
2016
-
[27]
Numerical coordinate regression with convolutional neural networks
Aiden Nibali, Zhen He, Stuart Morgan, and Luke Prender- gast. Numerical coordinate regression with convolutional neural networks. arXiv preprint arXiv:1801.07372, 2018. 2
2018 arXiv
-
[28]
Handoccnet: Occlusion-robust 3d hand mesh estimation network
JoonKyu Park, Yeonguk Oh, Gyeongsik Moon, Hongsuk Choi, and Kyoung Mu Lee. Handoccnet: Occlusion-robust 3d hand mesh estimation network. In CVPR, 2022. 3
2022
-
[29]
Deep face recognition
Omkar Parkhi, Andrea Vedaldi, and Andrew Zisserman. Deep face recognition. In BMVC, 2015. 1
2015
-
[30]
U-net: Convolutional networks for biomedical image segmentation
Olaf Ronneberger, Philipp Fischer, and Thomas Brox. U-net: Convolutional networks for biomedical image segmentation. In Medical Image Computing and Computer-Assisted Inter- vention, 2015. 2
2015
-
[31]
300 faces in-the-wild challenge: The first facial landmark localization challenge
Christos Sagonas, Georgios Tzimiropoulos, Stefanos Zafeiriou, and Maja Pantic. 300 faces in-the-wild challenge: The first facial landmark localization challenge. In ICCV workshops, 2013. 6, 9
2013
-
[32]
Deep high-resolution representation learning for human pose esti- mation
Ke Sun, Bin Xiao, Dong Liu, and Jingdong Wang. Deep high-resolution representation learning for human pose esti- mation. In CVPR, 2019. 2, 6, 7, 10 14
2019
-
[33]
Multi-task head pose estimation in-the-wild
Roberto Valle, Jos ´e M Buenaposada, and Luis Baumela. Multi-task head pose estimation in-the-wild. PAMI, 2020. 1
2020
-
[34]
Neural discrete representation learning
Aaron Van Den Oord, Oriol Vinyals, et al. Neural discrete representation learning. In NeurIPS, 2017. 3, 4, 8, 13
2017
-
[35]
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. In NeurIPS, 2017. 2, 3
2017
-
[36]
Adaptive wing loss for robust face alignment via heatmap regression
Xinyao Wang, Liefeng Bo, and Li Fuxin. Adaptive wing loss for robust face alignment via heatmap regression. In ICCV,
-
[37]
Lotr: face land- mark localization using localization transformer
Ukrit Watchareeruetai, Benjaphan Sommana, Sanjana Jain, Pavit Noinongyao, Ankush Ganguly, Aubin Samacoits, Samuel WF Earp, and Nakarin Sritrakool. Lotr: face land- mark localization using localization transformer. IEEE Ac- cess, 2022. 2
2022
-
[38]
As- sessing facial symmetry and attractiveness using augmented reality
Wei Wei, Edmond SL Ho, Kevin D McCay, Robertas Damaˇseviˇcius, Rytis Maskeli ¯unas, and Anna Esposito. As- sessing facial symmetry and attractiveness using augmented reality. Pattern Analysis and Applications, 2021. 1
2021
-
[39]
Transmarker: a pure vision transformer for facial landmark detection
Wenyan Wu, Yici Cai, and Qiang Zhou. Transmarker: a pure vision transformer for facial landmark detection. In ICPR,
-
[40]
Look at boundary: A boundary-aware face alignment algorithm
Wayne Wu, Chen Qian, Shuo Yang, Quan Wang, Yici Cai, and Qiang Zhou. Look at boundary: A boundary-aware face alignment algorithm. In CVPR, 2018. 1, 2, 4, 6, 7, 9, 10
2018
-
[41]
Robust facial landmark detection un- der significant head poses and occlusion
Yue Wu and Qiang Ji. Robust facial landmark detection un- der significant head poses and occlusion. In ICCV, 2015. 2
2015
-
[42]
Sparse local patch transformer for robust face alignment and landmarks inherent relation learning
Jiahao Xia, Weiwei Qu, Wenjian Huang, Jianguo Zhang, Xi Wang, and Min Xu. Sparse local patch transformer for robust face alignment and landmarks inherent relation learning. In CVPR, 2022. 1, 2, 6, 7, 10
2022
-
[43]
Learning feature recovery transformer for occluded person re-identification
Boqiang Xu, Lingxiao He, Jian Liang, and Zhenan Sun. Learning feature recovery transformer for occluded person re-identification. TIP, 2022. 3
2022
-
[44]
Facial landmark detection by deep multi-task learning
Zhanpeng Zhang, Ping Luo, Chen Change Loy, and Xiaoou Tang. Facial landmark detection by deep multi-task learning. In ECCV, 2014. 2
2014
-
[45]
Extensive facial landmark localization with coarse- to-fine convolutional network cascade
Erjin Zhou, Haoqiang Fan, Zhimin Cao, Yuning Jiang, and Qi Yin. Extensive facial landmark localization with coarse- to-fine convolutional network cascade. In ICCV workshops,
-
[46]
Towards robust blind face restora- tion with codebook lookup transformer
Shangchen Zhou, Kelvin Chan, Chongyi Li, and Chen Change Loy. Towards robust blind face restora- tion with codebook lookup transformer. In NeurIPS, 2022. 3, 4, 8, 13
2022
-
[47]
Star loss: Reducing semantic ambigu- ity in facial landmark detection
Zhenglin Zhou, Huaxia Li, Hong Liu, Nanyang Wang, Gang Yu, and Rongrong Ji. Star loss: Reducing semantic ambigu- ity in facial landmark detection. In CVPR, 2023. 1, 2, 6, 7, 10, 12, 13
2023
-
[48]
Occlusion-robust face alignment using a viewpoint-invariant hierarchical network architecture
Congcong Zhu, Xintong Wan, Shaorong Xie, Xiaoqiang Li, and Yinzheng Gu. Occlusion-robust face alignment using a viewpoint-invariant hierarchical network architecture. In CVPR, 2022. 3
2022
-
[49]
Robust facial landmark detection via occlusion- adaptive deep networks
Meilu Zhu, Daming Shi, Mingjie Zheng, and Muhammad Sadiq. Robust facial landmark detection via occlusion- adaptive deep networks. In CVPR, 2019. 3 15
2019
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.