Pith. sign in

REVIEW 3 major objections 6 minor 55 references

MFH: Marrying Frequency Domain with Handwritten Mathematical Expression Recognition

T0 review · 3 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read A frequency-domain side stream improves handwritten math expression recognition across three baselines.

desk verdict First DCT-based frequency stream for HMER is a clean idea, but test-set tuning of hyperparameters likely inflates the reported gains. read the letter →

arxiv 2507.00430 v1 pith:2HTQCJZB submitted 2025-07-01 cs.CV

classification cs.CV
keywords handwrittenmathematicalexpressionrecognitionfrequencydomainanalysisdiscretecosinetransformhigh-frequencyfeatureextractionencoder-decoderarchitecturefusionCROHMEbenchmark
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

This paper argues that handwritten mathematical expression recognition, which usually processes images only in the spatial domain, can be made more accurate by adding a parallel stream that operates on frequency-domain information. The proposed method, MFH, applies a discrete cosine transform to image patches, keeps only high-frequency coefficients, and fuses the resulting features with the spatial features of an existing encoder through a Fusion and Alignment Block. On the CROHME benchmarks, MFH improves three different baselines, including a 0.95-2.09 percentage-point gain over CoMER. The authors' central claim is that high-frequency components encode the contours and two-dimensional layout of formulas in a way that spatial features miss, and that this benefit grows for long formulas.

What carries the argument

The load-bearing object is a Patch-DCT pre-processing step combined with a Fusion and Alignment Block (FAB). Each $n\times n$ patch is transformed by the discrete cosine transform, and coefficients outside the bottom-right $m\times m$ high-frequency block are zeroed, producing an image that retains only high-frequency content. A small extractor of patch embedding, MLP layers, channel attention, and positional encoding turns this into a frequency feature $K$, which is aligned with the spatial feature $T$ through an attention map $A$: $K = A_1 K \otimes V_K$, $T = A_2 T \otimes V_T$, followed by direct addition. The FAB is what lets the two domains be combined without altering the backbone architecture.

What would settle it

Run MFH on CROHME with the complementary selection, keeping the top-left $5\times5$ low-frequency coefficients and zeroing the high frequencies. If that variant matches or beats MFH, the claim that high-frequency detail drives the gains is false. Re-tuning $m$ on a validation split only would also show whether the reported optimum is an artifact of test-set selection.

Watch

Extended reading notes

Core claim

The central claim is that feeding a DCT-derived, high-frequency-only feature stream into an HMER encoder, alongside the usual spatial stream, consistently improves expression-recognition accuracy. With patch size $n=8$ and retention size $m=5$, keeping only the bottom-right $5\times5$ DCT coefficients per patch and zeroing the rest, MFH-CoMER reaches 61.66%, 62.07%, and 63.72% expression recognition rate on CROHME 2014, 2016, and 2019, beating the reproduced CoMER baseline by 0.95, 2.09, and 1.50 percentage points respectively; MFH also improves the DWAP and ABM baselines. The paper attributes the gains to the frequency stream's ability to capture formula contours and layout, and shows the largest improvements on expressions of length 30 or more.

Load-bearing premise

The benefit of MFH rests on the premise that discarding all low-frequency DCT coefficients and keeping only the bottom-right $5\times5$ high-frequency block of each patch is a useful representation for recognizing structure, and the retention size $m$ is tuned on the CROHME test sets, so this particular choice is not independently validated.

Editorial extensions

If this is right

  • MFH is plug-and-play, so existing encoder-decoder HMER frameworks can adopt it without redesigning the decoder and still gain accuracy.
  • Because the gains concentrate in formulas of length 30 or more, the frequency stream specifically helps the complex two-dimensional layouts that are hardest for spatial-only recognizers.
  • DCT is preferable to FFT in this setup, indicating that real-valued cosine bases suit binary math-expression images better than complex Fourier coefficients.
  • The frequency stream remains beneficial when combined with data augmentation, so it can be layered onto stronger training pipelines.

Reading between the lines

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

  • The paper leaves decoder-side frequency attention untested; an editorial extension would be to feed frequency-aware cues into the attention decoder to attack the subscript and baseline errors shown in the attention maps.
  • Because the retention number $m$ is tuned on the test sets and produces a non-monotonic curve, a fairer test would tune $m$ on a validation split; if the gain shrinks, part of the reported improvement is a selection effect.
  • The same high-frequency fusion idea could transfer to other layout-dominated recognition tasks, such as chemical formula or table structure recognition, though the paper does not test this.
  • All experiments use CROHME, so whether the improvement generalizes to other handwriting styles and larger datasets remains an open testable question.
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 / 6 minor

Summary. The paper proposes MFH, a plug-and-play frequency-domain stream for handwritten mathematical expression recognition (HMER). Input images are divided into n×n patches, transformed with the discrete cosine transform (DCT), and only the bottom-right m×m high-frequency coefficients are retained in each patch while other coefficients are zeroed. The resulting representation is passed through a small feature extractor consisting of patch embedding, MLP layers, channel attention, and positional encoding, and a Fusion and Alignment Block (FAB) combines this frequency feature with the spatial feature from the CNN encoder. On CROHME 2014/2016/2019, the authors report MFH-CoMER ExpRates of 61.66/62.07/63.72, outperforming their reproduced CoMER baseline by 0.95/2.09/1.50 points, and also report gains for DWAP and ABM baselines. Ablations analyze the contribution of the frequency input, DCT versus FFT, patch size, retention number m, and the components of the proposed block.

Significance. Frequency-domain structural cues are a plausible and relatively underexplored direction for HMER, and a plug-and-play module that consistently improves existing encoders would be a useful contribution. The paper releases source code and includes informative ablations, such as the DCT-versus-FFT comparison and the component analysis of the frequency extractor. However, the evaluation protocol selects hyperparameters and the final model checkpoint on the test sets themselves, so the reported improvements cannot currently be taken at face value; the central empirical claim still needs an unbiased evaluation with a proper validation split.

major comments (3)
  1. [Sec. 5.4, Fig. 5, Tabs. 4-6] The hyperparameters m and n are selected by maximizing the average ExpRate over the three CROHME test sets. Since m is chosen as the best of eight values evaluated on the same data that are later reported as results, the comparison between MFH and the baseline is confounded by selection on the test sets. The m-sweep itself illustrates the problem: m=3 yields 60.71 Avg. ExpRate, below the 61.00 baseline, while m=5 yields 62.54; picking the maximum of this non-monotonic curve on the test sets can create an apparent gain even if the frequency stream has no true benefit. Please re-run the experiments with a validation split disjoint from all reported test sets, or fix hyperparameters before seeing test data, report results for all swept values, and include variance across seeds. The same requirement applies to the component choices in Tabs. 4-6.
  2. [Sec. 5.2, Tab. 1] The paper states that CROHME 2014 is used as the validation set to select the best-performing model during training, and the same CROHME 2014 set is reported as a test set in Tab. 1. This makes the 2014 ExpRate and the averaged metrics used throughout Sec. 5.4 dependent on model selection and therefore not an independent measure of generalization. The authors should use a validation set that is disjoint from all three reported test sets, for example a held-out portion of the 8836-image training set or a different CROHME year, and state this protocol explicitly.
  3. [Sec. 4.1, Fig. 3] The preprocessing step is described as retaining the bottom-right m×m DCT coefficients and then reshaping the patches to the original image size, but it is not stated whether I′ is obtained by an inverse DCT, so that it is a spatial image with low frequencies suppressed, or by directly arranging the coefficient matrix as an image-like tensor. This distinction matters for interpreting the method as frequency-domain augmentation versus coefficient-input training, and it affects how the patch-embedding layer should be understood. Please clarify the exact operation.
minor comments (6)
  1. [Eq. (4)] In the positional encoding formula, the variable p appears inside the sine and cosine instead of the position x; the standard form should be sin(x/10000^(2i/d)) and cos(x/10000^(2i/d)).
  2. [Tabs. 1 and 2] Tab. 2 reports the CoMER baseline as 61.00, which is an average over the three test sets, while Tab. 1 lists per-set values; make the averaging convention explicit and consider reporting per-set numbers for all ablations.
  3. [Tab. 3] The FFT variant is only described as using FFT instead of DCT; specify how the complex FFT coefficients are converted to the real-valued input expected by the patch-embedding layer.
  4. [Fig. 6] The y-axis is labeled Avg. ExpRate, but the bars are grouped by formula-length interval; clarify that the average is taken over the three test sets for each length bin.
  5. [Sec. 5.5] The text says "We hypothesis in Sec. 1"; this should read "We hypothesize."
  6. [Sec. 5.1] Please include the training schedule, optimizer, learning rate, and number of epochs; the current implementation details give model dimensions and hardware but not these training hyperparameters.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: MFH is an empirical architecture; reported gains are measured, not derived from the test targets.

full rationale

None of the paper's claimed derivation steps reduce to its own inputs by construction. The DCT transform and retained-coefficient selection are introduced as a preprocessing choice, not as a quantity fitted to the output labels and then renamed as a prediction. The central claim is an empirical comparison: MFH-CoMER improves over a reproduced CoMER baseline on the CROHME test sets. The hyperparameters m and n are selected using average ExpRate on the same test sets in Sec. 5.4, which is a genuine evaluation-protocol weakness that can inflate reported gains, but it is not a circular derivation: the final accuracy is still determined by training and inference on data, not by the selection rule alone. No self-citation is load-bearing: all cited works are external, and no uniqueness theorem or ansatz is imported from the authors' prior work. The FAB alignment equations and learnable vectors are architectural components whose effectiveness is measured by ablation, not asserted by definition. The limitations in Sec. 5.6 acknowledge unexplored directions but do not assert a missing proof or a circular step. Therefore, the paper's reasoning chain is self-contained with respect to the definition of circularity used here, and the score is 0.

Assumptions & free parameters 5 free parameters · 4 assumptions · 0 invented entities

The central claim relies on a handful of architectural hyperparameters, some selected on the test sets, and on the untested assumption that high-frequency DCT coefficients are the useful part of the signal for HMER. No new physical or conceptual entities are introduced.

free parameters (5)
  • patch size n = 8
    Chosen from comparison of 8x8 vs 16x16 (Table 4) using test set average; not justified analytically.
  • retention number m = 5
    Selected by scanning m in Fig. 5 on the test sets' average ExpRate, which is fitting to test data.
  • output channel dimension C = 256
    Set in implementation, no ablation shown.
  • dropout rate in MLP layers = 0.3
    Set in implementation, no ablation shown.
  • number of MLP layers = 6
    Set for MFH-CoMER; no ablation shown.
assumptions (4)
  • standard math DCT is a linear transform with orthogonality properties that can be applied to image patches.
    Invoked in Sec 3.1 as the basis for Patch-DCT.
  • domain assumption High-frequency components encode structural and contour information of handwritten formulas.
    Central premise introduced in Sec 1 and used in Sec 4.1 to justify keeping only high-frequency coefficients.
  • domain assumption CNN backbone features and frequency features can be aligned additively after the FAB without harming recognition.
    The FAB design in Sec 4.3 assumes this merge is beneficial and trainable.
  • domain assumption The network remains trainable end-to-end with the added frequency stream.
    Assumed throughout Sec 4 and implied by the experimental setup.

how reviews work

0 comments
Cite this review

Pith. "Pith review of MFH: Marrying Frequency Domain with Handwritten Mathematical Expression Recognition." pith.science (2026). https://pith.science/paper/2HTQCJZB

@misc{pith2026250700430,
  author       = {Pith},
  title        = {Pith review of: MFH: Marrying Frequency Domain with Handwritten Mathematical Expression Recognition},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/2HTQCJZB}},
  note         = {Machine review of arXiv:2507.00430}
}
read the original abstract

Handwritten mathematical expression recognition (HMER) suffers from complex formula structures and character layouts in sequence prediction. In this paper, we incorporate frequency domain analysis into HMER and propose a method that marries frequency domain with HMER (MFH), leveraging the discrete cosine transform (DCT). We emphasize the structural analysis assistance of frequency information for recognizing mathematical formulas. When implemented on various baseline models, our network exhibits a consistent performance enhancement, demonstrating the efficacy of frequency domain information. Experiments show that our MFH-CoMER achieves noteworthy accuracyrates of 61.66%/62.07%/63.72% on the CROHME 2014/2016/2019 test sets. The source code is available at https://github.com/Hryxyhe/MFH.

Figures

Figures reproduced from arXiv: 2507.00430 by the authors.

Figure 1
Figure 1. Comparison of different base￾lines and our method. To demonstrate the effectiveness of our MFH, we conduct experiments on the CROHME datasets. As shown in [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. The overview of MFH, which consists of a patch embedding layer, MLP [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. The DCT pre-processing. The input image is first divided into patches, [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: The FAB used in the feature fusion stage. [PITH_FULL_IMAGE:figures/full_fig_p006_4.png]
Figure 5
Figure 5. Figure 5: Avg. ExpRate for different retention number [PITH_FULL_IMAGE:figures/full_fig_p010_5.png]
Figure 6
Figure 6. Figure 6: Avg. ExpRate for different lengths of formulas. [PITH_FULL_IMAGE:figures/full_fig_p011_6.png]
Figure 7
Figure 7. Figure 7: Attention maps of CoMER [14] and our MFH-CoMER. recognition accuracy for long sequences, typically characterized by more complex spatial structures. The results are shown in [PITH_FULL_IMAGE:figures/full_fig_p011_7.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

55 extracted references · 48 canonical work pages

  1. [1]

    Recognition of on-line handwritten mathematical expressions using 2d stochastic context-free grammars and hidden markov models,

    F. Alvaro, J.-A. S´ anchez, and J.-M. Bened ´ ı, “Recognition of on-line handwritten mathematical expressions using 2d stochastic context-free grammars and hidden markov models,” Pattern Recognition Letters, vol. 35, pp. 58–67, 2014

  2. [2]

    A new approach for recognizing handwritten mathematics using relational grammars and fuzzy sets,

    S. MacLean and G. Labahn, “A new approach for recognizing handwritten mathematics using relational grammars and fuzzy sets,” International Journal on Document Analysis and Recognition (IJDAR) , vol. 16, pp. 139–163, 2013

  3. [3]

    Mathematical formula recognition using graph gram- mar,

    S. Lavirotte and L. Pottier, “Mathematical formula recognition using graph gram- mar,” in Document Recognition V, vol. 3305. SPIE, 1998, pp. 44–52

  4. [4]

    An efficient syntactic approach to structural analysis of on-line handwritten mathematical expressions,

    K.-F. Chan and D.-Y. Yeung, “An efficient syntactic approach to structural analysis of on-line handwritten mathematical expressions,” Pattern recognition, vol. 33, no. 3, pp. 375–384, 2000

  5. [5]

    Error detection, error correction and performance evaluation in on-line mathematical expression recognition,

    ——, “Error detection, error correction and performance evaluation in on-line mathematical expression recognition,” Pattern Recognition, vol. 34, no. 8, pp. 1671– 1684, 2001

  6. [6]

    Automatic generation of headlines for online math questions,

    K. Yuan, D. He, Z. Jiang, L. Gao, Z. Tang, and C. L. Giles, “Automatic generation of headlines for online math questions,” in Proceedings of the AAAI Conference on Artificial Intelligence, vol. 34, no. 05, 2020, pp. 9490–9497

  7. [7]

    Focusing attention: Towards accurate text recognition in natural images,

    Z. Cheng, F. Bai, Y. Xu, G. Zheng, S. Pu, and S. Zhou, “Focusing attention: Towards accurate text recognition in natural images,” in Proceedings of the IEEE international conference on computer vision , 2017, pp. 5076–5084

  8. [8]

    Watch, attend and parse: An end-to-end neural network based approach to handwritten mathematical expression recognition,

    J. Zhang, J. Du, S. Zhang, D. Liu, Y. Hu, J. Hu, S. Wei, and L. Dai, “Watch, attend and parse: An end-to-end neural network based approach to handwritten mathematical expression recognition,” Pattern Recognition, vol. 71, pp. 196–206, 2017. Title Suppressed Due to Excessive Length 13

Show all 55 references
  1. [9]

    When counting meets hmer: counting-aware network for handwritten mathematical expression recognition,

    B. Li, Y. Yuan, D. Liang, X. Liu, Z. Ji, J. Bai, W. Liu, and X. Bai, “When counting meets hmer: counting-aware network for handwritten mathematical expression recognition,” in European Conference on Computer Vision . Springer, 2022, pp. 197–214

  2. [10]

    Multi-scale attention with dense encoder for handwritten mathematical expression recognition,

    J. Zhang, J. Du, and L. Dai, “Multi-scale attention with dense encoder for handwritten mathematical expression recognition,” in 2018 24th international conference on pattern recognition (ICPR). IEEE, 2018, pp. 2245–2250

  3. [11]

    Densely connected convolutional networks,

    G. Huang, Z. Liu, L. Van Der Maaten, and K. Q. Weinberger, “Densely connected convolutional networks,” in Proceedings of the IEEE conference on computer vision and pattern recognition, 2017, pp. 4700–4708

  4. [12]

    Attention is all you need,

    A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, L. Kaiser, and I. Polosukhin, “Attention is all you need,” Advances in neural information processing systems, vol. 30, 2017

  5. [13]

    Handwritten mathemat- ical expression recognition with bidirectionally trained transformer,

    W. Zhao, L. Gao, Z. Yan, S. Peng, L. Du, and Z. Zhang, “Handwritten mathemat- ical expression recognition with bidirectionally trained transformer,” in Document Analysis and Recognition–ICDAR 2021: 16th International Conference, Lausanne, Switzerland, September 5–10, 2021, Pro...

  6. [14]

    Comer: Modeling coverage for transformer-based handwrit- ten mathematical expression recognition,

    W. Zhao and L. Gao, “Comer: Modeling coverage for transformer-based handwrit- ten mathematical expression recognition,” in European Conference on Computer Vision. Springer, 2022, pp. 392–408

  7. [15]

    Textdct: Arbitrary- shaped text detection via discrete cosine transform mask,

    Y. Su, Z. Shao, Y. Zhou, F. Meng, H. Zhu, B. Liu, and R. Yao, “Textdct: Arbitrary- shaped text detection via discrete cosine transform mask,” IEEE Transactions on Multimedia, 2022

  8. [16]

    Dct-mask: Discrete cosine transform mask representation for instance segmen- tation,

    X. Shen, J. Yang, C. Wei, B. Deng, J. Huang, X.-S. Hua, X. Cheng, and K. Liang, “Dct-mask: Discrete cosine transform mask representation for instance segmen- tation,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2021, pp. 8720–8729

  9. [17]

    Patchdct: Patch refinement for high quality instance segmentation,

    Q. Wen, J. Yang, X. Yang, and K. Liang, “Patchdct: Patch refinement for high quality instance segmentation,” arXiv preprint arXiv:2302.02693 , 2023

  10. [18]

    A bayesian model for recognizing handwritten mathematical expressions,

    S. MacLean and G. Labahn, “A bayesian model for recognizing handwritten mathematical expressions,” Pattern Recognition, vol. 48, no. 8, pp. 2433–2445, 2015

  11. [19]

    Offline handwritten mathemat- ical expression recognition via graph reasoning network,

    J.-M. Tang, J.-W. Wu, F. Yin, and L.-L. Huang, “Offline handwritten mathemat- ical expression recognition via graph reasoning network,” in Asian Conference on Pattern Recognition. Springer, 2021, pp. 17–31

  12. [20]

    Relation-based representation for handwritten mathematical expression recog- nition,

    T.-N. Truong, H. Q. Ung, H. T. Nguyen, C. T. Nguyen, and M. Nakagawa, “Relation-based representation for handwritten mathematical expression recog- nition,” in International Conference on Document Analysis and Recognition . Springer, 2021, pp. 7–19

  13. [21]

    Syntax-aware network for handwritten mathematical expression recognition,

    Y. Yuan, X. Liu, W. Dikubab, H. Liu, Z. Ji, Z. Wu, and X. Bai, “Syntax-aware network for handwritten mathematical expression recognition,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2022, pp. 4553–4562

  14. [22]

    Mlp-mixer: An all-mlp architecture for vision,

    I. O. Tolstikhin, N. Houlsby, A. Kolesnikov, L. Beyer, X. Zhai, T. Unterthiner, J. Yung, A. Steiner, D. Keysers, J. Uszkoreit et al. , “Mlp-mixer: An all-mlp architecture for vision,” Advances in neural information processing systems, vol. 34, pp. 24 261–24 272, 2021

  15. [23]

    Handwritten mathemat- ical expression recognition via attention aggregation based bi-directional mutual 14 Huanxin Yang 1⋆(B) and Qiwen Wang1(B) learning,

    X. Bian, B. Qin, X. Xin, J. Li, X. Su, and Y. Wang, “Handwritten mathemat- ical expression recognition via attention aggregation based bi-directional mutual 14 Huanxin Yang 1⋆(B) and Qiwen Wang1(B) learning,” in Proceedings of the AAAI Conference on Artificial Intelligence, vo...

  16. [24]

    Discrete cosine transform,

    N. Ahmed, T. Natarajan, and K. R. Rao, “Discrete cosine transform,” IEEE transactions on Computers , vol. 100, no. 1, pp. 90–93, 1974

  17. [25]

    Fcanet: Frequency channel attention networks,

    Z. Qin, P. Zhang, F. Wu, and X. Li, “Fcanet: Frequency channel attention networks,” in Proceedings of the IEEE/CVF international conference on computer vision, 2021, pp. 783–792

  18. [26]

    An encoder-decoder approach to handwritten mathematical expression recognition with multi-head attention and stacked de- coder,

    H. Ding, K. Chen, and Q. Huo, “An encoder-decoder approach to handwritten mathematical expression recognition with multi-head attention and stacked de- coder,” in Document Analysis and Recognition–ICDAR 2021: 16th International Conference, Lausanne, Switzerland, September 5–10...

  19. [27]

    Springer, 2021, pp. 602–616

  20. [28]

    Improving attention-based handwritten math- ematical expression recognition with scale augmentation and drop attention,

    Z. Li, L. Jin, S. Lai, and Y. Zhu, “Improving attention-based handwritten math- ematical expression recognition with scale augmentation and drop attention,” in 2020 17th International Conference on Frontiers in Handwriting Recognition (ICFHR). IEEE, 2020, pp. 175–180

  21. [29]

    A tree-based structure-aware transformer decoder for image-to-markup generation,

    S. Zhong, S. Song, G. Li, and S.-H. G. Chan, “A tree-based structure-aware transformer decoder for image-to-markup generation,” in Proceedings of the 30th ACM International Conference on Multimedia , 2022, pp. 5751–5760

  22. [30]

    Offline handwritten mathematical expression recognition with graph encoder and transformer decoder,

    J.-M. Tang, H.-Y. Guo, J.-W. Wu, F. Yin, and L.-L. Huang, “Offline handwritten mathematical expression recognition with graph encoder and transformer decoder,” Pattern Recognition, vol. 148, p. 110155, 2024

  23. [31]

    Semantic graph representation learning for handwritten mathematical expression recognition,

    Z. Liu, Y. Yuan, Z. Ji, J. Bai, and X. Bai, “Semantic graph representation learning for handwritten mathematical expression recognition,” in International Conference on Document Analysis and Recognition . Springer, 2023, pp. 152–166

  24. [32]

    Read ten lines at one glance: Line-aware semi-autoregressive transformer for multi-line handwritten mathematical expression recognition,

    W. Yang, Z. Li, D. Peng, L. Jin, M. He, and C. Yao, “Read ten lines at one glance: Line-aware semi-autoregressive transformer for multi-line handwritten mathematical expression recognition,” in Proceedings of the 31st ACM Interna- tional Conference on Multimedia , 2023, pp. 2066–2077

  25. [33]

    Optical formula recognition,

    S. Lavirotte and L. Pottier, “Optical formula recognition,” in Proceedings of the Fourth International Conference on Document Analysis and Recognition , vol. 1. IEEE, 1997, pp. 357–361

  26. [34]

    What you get is what you see: A visual markup decompiler,

    Y. Deng, A. Kanervisto, and A. M. Rush, “What you get is what you see: A visual markup decompiler,” arXiv preprint arXiv:1609.04938 , vol. 10, no. 32-37, p. 3, 2016

  27. [35]

    Modeling coverage for neural machine translation,

    Z. Tu, Z. Lu, Y. Liu, X. Liu, and H. Li, “Modeling coverage for neural machine translation,” arXiv preprint arXiv:1601.04811 , 2016

  28. [36]

    Training an end-to-end system for handwritten mathematical expression recognition by generated patterns,

    A. D. Le and M. Nakagawa, “Training an end-to-end system for handwritten mathematical expression recognition by generated patterns,” in 2017 14th IAPR International Conference on Document Analysis and Recognition (ICDAR), vol. 1. IEEE, 2017, pp. 1056–1061

  29. [37]

    Decouple the high-frequency and low-frequency information of images for semantic segmentation,

    L. Shan, X. Li, and W. Wang, “Decouple the high-frequency and low-frequency information of images for semantic segmentation,” in ICASSP 2021-2021 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) . IEEE, 2021, pp. 1805–1809

  30. [38]

    Image tamper detection and recovery system based on discrete wavelet transformation,

    K.-F. Li, T.-S. Chen, and S.-C. Wu, “Image tamper detection and recovery system based on discrete wavelet transformation,” in 2001 IEEE Pacific Rim Conference on Communications, Computers and Signal Processing (IEEE Cat. No. 01CH37233) , vol. 1. IEEE, 2001, pp. 164–167. Title ...

  31. [39]

    Tampered text detection via rgb and frequency relationship modeling,

    Y. Wang, B. Zhang, H. Xie, and Y. Zhang, “Tampered text detection via rgb and frequency relationship modeling,” Chinese Journal of Network and Information Security, vol. 8, no. 3, pp. 29–40, 2022

  32. [40]

    Fighting deepfakes by detecting gan dct anomalies,

    O. Giudice, L. Guarnera, and S. Battiato, “Fighting deepfakes by detecting gan dct anomalies,” Journal of Imaging , vol. 7, no. 8, p. 128, 2021

  33. [41]

    Watch your up-convolution: Cnn based generative deep neural networks are failing to reproduce spectral distributions,

    R. Durall, M. Keuper, and J. Keuper, “Watch your up-convolution: Cnn based generative deep neural networks are failing to reproduce spectral distributions,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2020, pp. 7890–7899

  34. [42]

    A tree-based model with branch parallel decoding for handwritten mathematical expression recognition,

    Z. Li, W. Yang, H. Qi, L. Jin, Y. Huang, and K. Ding, “A tree-based model with branch parallel decoding for handwritten mathematical expression recognition,” Pattern Recognition, vol. 149, p. 110220, 2024

  35. [43]

    Resolution-robust large mask inpainting with fourier convolutions,

    R. Suvorov, E. Logacheva, A. Mashikhin, A. Remizova, A. Ashukha, A. Silvestrov, N. Kong, H. Goka, K. Park, and V. Lempitsky, “Resolution-robust large mask inpainting with fourier convolutions,” in Proceedings of the IEEE/CVF winter conference on applications of computer vision...

  36. [44]

    Fast fourier convolution,

    L. Chi, B. Jiang, and Y. Mu, “Fast fourier convolution,” Advances in Neural Information Processing Systems, vol. 33, pp. 4479–4488, 2020

  37. [45]

    Deep frequency filtering for domain generalization,

    S. Lin, Z. Zhang, Z. Huang, Y. Lu, C. Lan, P. Chu, Q. You, J. Wang, Z. Liu, A. Parulkar et al., “Deep frequency filtering for domain generalization,” in Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2023, pp. 11 797–11 807

  38. [46]

    Handwritten mathematical expression recognition with self-attention,

    X. Chi, D.-H. Wang, Y. Wu, and Y. Wu, “Handwritten mathematical expression recognition with self-attention,” in Proceedings of the 2021 4th International Conference on Algorithms, Computing and Artificial Intelligence , 2021, pp. 1–6

  39. [47]

    Cat-net: Compression artifact tracing network for detection and localization of image splicing,

    M.-J. Kwon, I.-J. Yu, S.-H. Nam, and H.-K. Lee, “Cat-net: Compression artifact tracing network for detection and localization of image splicing,” in Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision , 2021, pp. 375–384

  40. [48]

    Docpedia: Unleashing the power of large multimodal model in the frequency domain for versatile document understanding,

    H. Feng, Q. Liu, H. Liu, W. Zhou, H. Li, and C. Huang, “Docpedia: Unleashing the power of large multimodal model in the frequency domain for versatile document understanding,” arXiv preprint arXiv:2311.11810 , 2023

  41. [49]

    End- to-end object detection with transformers,

    N. Carion, F. Massa, G. Synnaeve, N. Usunier, A. Kirillov, and S. Zagoruyko, “End- to-end object detection with transformers,” in European conference on computer vision. Springer, 2020, pp. 213–229

  42. [50]

    Semantic-aware non-local network for handwritten mathematical expression recognition,

    X.-H. Liu, D.-H. Wang, X. Du, and S. Zhu, “Semantic-aware non-local network for handwritten mathematical expression recognition,” in Chinese Conference on Pattern Recognition and Computer Vision (PRCV) . Springer, 2022, pp. 361–371

  43. [51]

    Handwritten mathematical expres- sion recognition via gcattention-based encoder and bidirectional mutual learning transformer,

    X. Han, Q. Liu, Z. Han, Y. Lin, and N. Xu, “Handwritten mathematical expres- sion recognition via gcattention-based encoder and bidirectional mutual learning transformer,” in Chinese Conference on Pattern Recognition and Computer Vision (PRCV). Springer, 2022, pp. 282–294

  44. [52]

    Speech recognition with deep recurrent neural networks,

    A. Graves, A.-r. Mohamed, and G. Hinton, “Speech recognition with deep recurrent neural networks,” in 2013 IEEE international conference on acoustics, speech and signal processing. Ieee, 2013, pp. 6645–6649

  45. [53]

    On-line recognition of handwritten mathematical expressions based on stroke-based stochastic context- free grammar,

    R. Yamamoto, S. Sako, T. Nishimoto, and S. Sagayama, “On-line recognition of handwritten mathematical expressions based on stroke-based stochastic context- free grammar,” in Tenth international workshop on frontiers in handwriting recog- nition. Suvisoft, 2006. 16 Huanxin Yang...

  46. [54]

    Comprehensive benchmark datasets for amharic scene text detection and recognition,

    W. Dikubab, D. Liang, M. Liao, and X. Bai, “Comprehensive benchmark datasets for amharic scene text detection and recognition,” arXiv preprint arXiv:2203.12165, 2022

  47. [55]

    Visual information extraction in the wild: practical dataset and end-to-end solution,

    J. Kuang, W. Hua, D. Liang, M. Yang, D. Jiang, B. Ren, and X. Bai, “Visual information extraction in the wild: practical dataset and end-to-end solution,” in International Conference on Document Analysis and Recognition. Springer, 2023, pp. 36–53

Pith tools

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