Pith. sign in

REVIEW 3 major objections 6 minor 63 references

CHaRM: Conditioned Heatmap Regression Methodology for Accurate and Fast Dental Landmark Localization

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

Pith's one-line read CHaRNet detects dental landmarks directly on 3D intraoral scan point clouds, reaching 0.56 mm mean error on standard models and avoiding tooth segmentation entirely.

desk verdict Solid dental-landmarks paper with a real new dataset, but the headline CHaR module is never ablated from the multi-task head and loss, so the central attribution is under-evidenced. read the letter →

arxiv 2501.13073 v5 pith:SAT2BF6X submitted 2025-01-22 cs.CV

classification cs.CV
keywords dentallandmarkdetectionintraoralscanspointclouddeeplearningheatmapregressionconditionedtoothpresenceclassificationorthodontictreatmentplanningIOSLandmarks-1k
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

The paper proposes CHaRM, a fully end-to-end deep learning methodology that localizes five dental landmarks per tooth directly on intraoral scan point clouds, eliminating the tooth-segmentation stage that previous methods require. The central idea is to condition the heatmap regression on predicted per-tooth presence probabilities, so landmarks of missing teeth are routed to a dedicated null point instead of hallucinating positions in the mesh. Evaluated on a new annotated dataset of 1,214 dental models, the best instantiation, CHaRNet, reports a mean Euclidean distance error of 0.56 mm on standard dentitions and 1.12 mm macro-averaged across all dentition types, while running up to 14.8x faster on GPU than the two-stage TSMDL baseline. A sympathetic reader would care because this removes a costly, error-prone preprocessing step and handles missing teeth in a single network.

What carries the argument

The load-bearing component is the Conditioned Heatmap Regression (CHaR) module, applied after the decoder and heatmap head. It takes the initial heatmap for landmark (t, g), the predicted presence probability p_t of tooth t, and a special null point placed outside the point cloud, then computes final scores as real-point likelihoods weighted by p_t and the null-point likelihood weighted by 1 - p_t. This switch-like weighting lets the network dynamically relocate landmarks of absent teeth to the null point while keeping landmarks of present teeth on the mesh, and it is trained jointly with a binary cross-entropy presence-classification head and an MSE heatmap regression loss.

What would settle it

Recompute MEDE and MSR over all existing landmarks, treating false negatives (landmarks predicted at the null point that actually exist) as errors at least as large as the largest observed distance, and re-rank CHaRNet against TSMDL and ALIIOS; if CHaRNet no longer leads, the reported accuracy gain is an artifact of the true-positive-only protocol.

Watch

Extended reading notes

Core claim

The paper claims that a simple multiplicative gating of heatmap scores by tooth-presence probabilities turns a generic point cloud encoder-decoder into a clinically useful dental landmark detector that works on incomplete dentitions. For each landmark associated with tooth t, the CHaR module multiplies the likelihoods of all real mesh points by the predicted presence probability p_t and multiplies the null-point likelihood by (1 - p_t), so the final heatmap maximum lands either on the tooth or on a fixed external placeholder. With PointMLP as the encoder, the resulting CHaRNet beats the segmentation-based TSMDL and ALIIOS pipelines on nearly every dentition subtype in localization error and success rate, and does so without segmenting teeth at inference time.

Load-bearing premise

The evaluation protocol measures localization accuracy only on landmarks the model correctly identified as present, so a model that misses difficult landmarks entirely can look more accurate than one that detects them with large errors.

Editorial extensions

If this is right

  • Orthodontic workflows can obtain per-tooth landmarks without a separate tooth-segmentation stage, removing segmentation error propagation.
  • CHaRNet's GPU inference time of about 0.24 seconds per model makes real-time landmark placement feasible in treatment-planning software.
  • The CHaR mechanism improves five different point cloud backbones, so the conditioning idea transfers beyond a single architecture.
  • The public release of 1,214 annotated models gives the field a benchmark that includes missing teeth and third molars, which prior datasets largely lacked.

Reading between the lines

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

  • Because the reported MEDE and MSR are computed only over true-positive landmarks, a model that silently misses hard landmarks can appear more accurate than one that finds them with large errors; re-ranking the methods after counting false negatives as large errors would test how much of the advantage survives.
  • The same conditioning mechanism could transfer to other landmark-detection tasks on point clouds where individual parts may be absent, such as craniofacial or orthopedic keypoints, provided a null-point convention can be defined.
  • A direct ablation that feeds ground-truth presence labels instead of predicted probabilities into the CHaR module would isolate how much of the gain comes from the weighting rule versus the quality of the presence classifier.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

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. CHaRM is an end-to-end methodology for localizing five anatomical landmarks per tooth on 3D intraoral scans. The method uses a point-cloud encoder/decoder with a heatmap regression head, a teeth-presence classification head, and a CHaR module that multiplies each landmark's heatmap by the predicted presence probability of its tooth and weights an added null point by the absence probability. A new dataset, IOSLandmarks-1k (1,214 models), with a ten-class dentition taxonomy, is introduced. Experiments compare five backbones with and without CHaR and compare the best variant (CHaRNet, based on PointMLP) with TSMDL and ALIIOS. The paper reports a MEDE of 0.56 mm on standard dentitions and 1.12 mm macro-averaged across dentition types, MSR of 85.2% and 68.5%, and a 14.8x GPU speedup over TSMDL.

Significance. The dataset and the promised public release are valuable contributions to a field with scarce open data, and the efficiency gain from avoiding a segmentation stage is practically meaningful. The conditioning idea is simple and plausible, and evaluating five backbones gives evidence of general applicability. However, the central causal claim about the CHaR module is not yet empirically supported because the CHaR versions differ from the base models by more than the conditioning operation, and the evaluation metrics are true-positive-conditional with no uncertainty estimates. If the missing ablation and full-set metrics confirm the reported trends, CHaRNet would be a solid state-of-the-art result; as it stands, the strength of the conclusions exceeds the evidence.

major comments (3)
  1. [§4.2, §5.4, Eqs. (5)–(6)] The central claim that the CHaR module drives the improvements is not identified by the experimental design. In Tables 5–7, the 'Base' condition is trained only with the MSE loss (Eq. 3), while the 'CHaR' condition simultaneously adds the classification head, the BCE loss with λ_cls=1 and λ_reg=0.001 (Eq. 5), and the multiplicative weighting in Eq. (6). The gains could therefore be caused by multi-task regularization or by the extra capacity of the classification branch alone, rather than by the conditioning operation. An ablation that keeps the classification head and BCE loss but replaces Eq. (6) with an identity (or with ground-truth presence labels) is needed to attribute the improvement to the proposed module; without it, the paper's main novelty claim is unsupported.
  2. [§5.3, Eqs. (8)–(9)] MEDE and MSR are computed only over true-positive landmarks, so landmarks that are missed (false negatives) never enter the localization error. Consequently, the reported MEDE of 0.56 mm for CHaRNet is a conditional quantity: it measures accuracy only on the subset of landmarks that the model detected. A model that detects fewer hard landmarks can look more accurate under this protocol. Reporting F1 alongside mitigates this only partially, and CHaRNet's higher F1 in the SOTA comparison makes its TP-conditioned errors relatively harder, but the headline numbers in the abstract are still not full-set localization errors. I recommend also reporting an error measure that penalizes false negatives (e.g., assigning FN a fixed distance penalty or computing MEDE over all landmarks of present teeth), and reporting confidence intervals or multiple-seed statistics, since all tables present single-split point estimates.
  3. [§5.4, Tables 6–7] The Base-versus-CHaR localization comparison uses different rules for defining true positives. For base models, a tooth is considered absent if any of its five landmarks is predicted at the null point, which removes all five landmarks from MEDE/MSR; for CHaR versions, presence comes from the classification head and each landmark is evaluated independently. This asymmetry can distort Tables 6–7, because one misplaced landmark in a base model eliminates the other four (possibly accurate) landmarks from the localization statistics. The comparison should be repeated under a common TP rule, or with full-set metrics that do not depend on the heuristic presence criterion.
minor comments (6)
  1. [§1] The text contains the typo 'CHarNet' in the introduction; it should be 'CHaRNet'.
  2. [§5.5] The text says CHaRNet reduces the micro-averaged MEDE to 0.80 mm, but Table 9 reports a micro-avg MEDE of 0.70 mm for CHaRNet; please reconcile the discrepancy.
  3. [§6] The discussion states that CHaR improves 'the encoding of local geometric information,' but CHaR reweights heatmap values rather than modifying the encoder; this sentence mischaracterizes the method and should be rephrased.
  4. [§1 and §2.2] The claim of being 'the first fully end-to-end deep learning approach' should be qualified, since c-SCN [7] is described in Section 2.2 as an end-to-end method for tooth segmentation and landmark localization, albeit on crowns only.
  5. [§4.2, Eq. (6)] The set-union notation in Eq. (6) is ambiguous for what should be an ordered heatmap vector; define the update by index (e.g., the final heatmap entries) so that the argmax in Eq. (2) is well-defined.
  6. [§5.2] The sentence describing training of CHaR-based networks with 'the MSE loss (Formula 3) and the combined loss (Formula 5), respectively' is ambiguous; clarify that base versions use Eq. (3) and CHaR versions use Eq. (5).

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity found: CHaRM is an empirical supervised pipeline evaluated on a held-out split, and the CHaR conditioning is not defined in terms of the reported metrics.

full rationale

This paper is an empirical deep learning contribution, not a mathematical derivation chain. The CHaR module (Eq. 6) multiplies initial heatmap likelihoods by tooth-presence probabilities from a separate classification head, both trained with ground-truth labels (Eqs. 3-5) derived from the dataset annotations. No parameter is fitted to the test set: the patient-grouped, stratified holdout split (Section 5.1) means the reported MEDE, MSR, and F1 values are held-out predictions, not fitted quantities renamed as predictions. The TP-only localization metrics (Eqs. 8-9) exclude false negatives, but F1 is reported separately in Table 8 and the same protocol is applied to all compared methods, so this is a metric design choice rather than a circular reduction. The paper does not rely on load-bearing self-citations: TSMDL and ALIIOS are external methods with disjoint author lists, and no uniqueness theorem is imported from the authors' prior work. The main genuine weakness is that the gain of the CHaR conditioning is not isolated from the added classification head and BCE loss, so the contribution of Eq. 6 alone is not empirically pinned down; however, that is an attribution/ablation confound, not a case where an output is equivalent to an input by construction. Therefore the appropriate circularity score is 0.

Assumptions & free parameters 5 free parameters · 5 assumptions · 1 invented entities

The method rests on a handful of design choices (σ, λ weights, null point placement) that are set by hand, plus domain assumptions about annotation quality and the clinical meaning of the 1 mm threshold. None of these are fitted to the test set, and the paper does not claim a derivation, so the axiom ledger is modest.

free parameters (5)
  • σ (Gaussian heatmap standard deviation) = 2 mm
    Set by hand in Section 3.4; controls the spatial spread of the landmark heatmap targets.
  • λ_reg, λ_cls (loss weights) = 0.001 and 1
    Chosen in Section 5.2 to balance the larger scale of the MSE loss against the BCE loss; no sensitivity analysis shown.
  • Downsampled point count = 10,000 (plus null point = 10,001)
    Chosen as a resolution/compute trade-off in Section 3.3.
  • Null point offset = c + m_b/2 · (0,1,0)
    Data-dependent placement rule in Section 3.3; arbitrary 1D offset, no ablation.
  • MSR threshold r = 1 mm
    Clinically chosen threshold in Eq. 9; no alternative thresholds explored.
assumptions (5)
  • domain assumption Expert landmark annotations are accurate and consistent
    The ground truth for all training and evaluation is taken as correct; Section 3 states models are 'annotated with detailed reference landmarks'.
  • domain assumption Dental models can be centered and oriented along the z-axis
    Section 3.1 says models are centered on the origin and oriented parallel to the z axis, which is required for the null point placement and consistent input.
  • domain assumption Gaussian heatmaps with σ=2mm are a valid target representation
    Section 3.4 defines the heatmap target; the choice of σ affects the learning problem.
  • domain assumption The null point is a sensible placeholder for absent landmarks
    Section 3.3 introduces a synthetic point outside the cloud; this assumes that landmarks of missing teeth should be assigned to a single external point rather than being undefined.
  • standard math Standard deep learning training assumptions (i.i.d. data, no leakage)
    Section 5.1 describes a stratified patient-level split to prevent leakage.
invented entities (1)
  • Null point
    purpose: A single extra point added outside the point cloud to serve as the target/placeholder for landmarks of missing teeth, allowing the heatmap argmax to output 'absent'.
    This is a modeling construct, not an empirical entity. It is central to the CHaR scheme (Section 3.3, Figure 5) but has no external falsifiable predictions.

how reviews work

0 comments
Cite this review

Pith. "Pith review of CHaRM: Conditioned Heatmap Regression Methodology for Accurate and Fast Dental Landmark Localization." pith.science (2026). https://pith.science/paper/SAT2BF6X

@misc{pith2026250113073,
  author       = {Pith},
  title        = {Pith review of: CHaRM: Conditioned Heatmap Regression Methodology for Accurate and Fast Dental Landmark Localization},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/SAT2BF6X}},
  note         = {Machine review of arXiv:2501.13073}
}
read the original abstract

Identifying anatomical landmarks in 3D dental models is essential for orthodontic treatment, yet manual placement is labor-intensive and requires expert knowledge. While machine learning methods have been proposed for automatic landmark detection in 3D Intraoral Scans (IOS), none provide a fully end-to-end solution that avoids costly tooth segmentation. We present CHaRM (Conditioned Heatmap Regression Methodology), the first fully end-to-end deep learning approach for tooth landmark detection in 3D IOS. CHaRM integrates four components: a point cloud encoder, a decoder with a heatmap regression head, a teeth-presence classification head, and the novel CHaR module. The CHaR module leverages teeth-presence information to adapt to missing teeth, improving detection accuracy in complex dental cases. Unlike two-stage workflows that segment teeth before landmarking, CHaRM operates directly on IOS point clouds, reducing complexity, avoiding error propagation, and lowering computational cost. We evaluated CHaRM with five point cloud learning backbones on IOSLandmarks-1k, a new dataset of 1,214 annotated 3D dental models. Both the dataset and code will be publicly released to address the scarcity of open data in orthodontics and foster reproducible research. CHaRM with PointMLP, named CHaRNet, achieved the best accuracy and efficiency. Compared to state-of-the-art methods (TSMDL and ALIIOS), CHaRNet reduced mean Euclidean distance error to 0.56 mm on standard dental models and 1.12 mm across all dentition type, while delivering up to 14.8x faster inference on GPU. This end-to-end approach streamlines orthodontic workflows, enhances the precision of 3D IOS analysis, and enables efficient computer-assisted treatment planning.

Figures

Figures reproduced from arXiv: 2501.13073 by the authors.

Figure 1
Figure 1. Four views of a complete dentition (16 teeth) with its corresponding 80 landmarks (5 per tooth). [PITH_FULL_IMAGE:figures/full_fig_p004_1.png] view at source ↗
Figure 2
Figure 2. Examples of each dentition type based on our proposed taxonomy. The rows represent the presence or absence [PITH_FULL_IMAGE:figures/full_fig_p006_2.png] view at source ↗
Figure 3
Figure 3. Count of each tooth in the dataset. The green dashed line represents the total number of dental models, i.e., [PITH_FULL_IMAGE:figures/full_fig_p007_3.png] view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: Original (top row) and downsampled (bottom row) point clouds. [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]
Figure 5
Figure 5. Figure 5: 4 views of an input sample: A point cloud with 10000 points randomly subsampled from a 3D dental model [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Pipeline of CHaRM. Given an input point cloud of a 3D dental model, (1) the point cloud encoder extracts [PITH_FULL_IMAGE:figures/full_fig_p010_6.png]
Figure 7
Figure 7. Figure 7: Overview of the Conditioned Heatmap Regression (CHaR) module. Initial heatmaps are adjusted by weighting [PITH_FULL_IMAGE:figures/full_fig_p011_7.png]
Figure 8
Figure 8. Figure 8: Qualitative comparison between base networks (top row), CHaR-based networks (middle row) and ground [PITH_FULL_IMAGE:figures/full_fig_p015_8.png]
Figure 9
Figure 9. Figure 9: Qualitative comparison between ALIIOS, TSMDL and CHaRNet on a standard dentition (a) and on a complex [PITH_FULL_IMAGE:figures/full_fig_p018_9.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

63 extracted references · 48 canonical work pages

  1. [1]

    Automatic feature identification in dental meshes

    Yokesh Kumar, Ravi Janardan, and Brent Larson. Automatic feature identification in dental meshes. Computer- Aided Design and Applications, 9(6):747–769, 2012

  2. [2]

    Automatic classification and segmentation of teeth on 3d dental model using hierarchical deep learning networks

    Sukun Tian, Ning Dai, Bei Zhang, Fulai Yuan, Qing Yu, and Xiaosheng Cheng. Automatic classification and segmentation of teeth on 3d dental model using hierarchical deep learning networks. Ieee Access, 7:84817–84828, 18 2019

  3. [3]

    Dense representative tooth landmark/axis detection network on 3d model

    Guangshun Wei, Zhiming Cui, Jie Zhu, Lei Yang, Yuanfeng Zhou, Pradeep Singh, Min Gu, and Wenping Wang. Dense representative tooth landmark/axis detection network on 3d model. Computer Aided Geometric Design, 94:102077, 2022

  4. [4]

    Accuracy and efficiency of automatic tooth segmentation in digital dental models using deep learning

    Joon Im, Ju-Yeong Kim, Hyung-Seog Yu, Kee-Joon Lee, Sung-Hwan Choi, Ji-Hoi Kim, Hee-Kap Ahn, and Jung-Yul Cha. Accuracy and efficiency of automatic tooth segmentation in digital dental models using deep learning. Scientific reports, 12(1):9429, 2022

  5. [5]

    Deep multi-scale mesh feature learning for automated labeling of raw dental surfaces from 3d intraoral scanners

    Chunfeng Lian, Li Wang, Tai-Hsien Wu, Fan Wang, Pew-Thian Yap, Ching-Chang Ko, and Dinggang Shen. Deep multi-scale mesh feature learning for automated labeling of raw dental surfaces from 3d intraoral scanners. IEEE transactions on medical imaging, 39(7):2440–2450, 2020

  6. [6]

    Meshsnet: Deep multi-scale mesh feature learning for end-to-end tooth labeling on 3d dental surfaces

    Chunfeng Lian, Li Wang, Tai-Hsien Wu, Mingxia Liu, Francisca Durán, Ching-Chang Ko, and Dinggang Shen. Meshsnet: Deep multi-scale mesh feature learning for end-to-end tooth labeling on 3d dental surfaces. In Medical Image Computing and Computer Assisted Intervention–MICCAI 2019: 22nd International Conference, Shenzhen, China, October 13–17, 2019, Proceedi...

  7. [7]

    Automatic tooth segmentation and dense correspondence of 3d dental model

    Diya Sun, Yuru Pei, Peixin Li, Guangying Song, Yuke Guo, Hongbin Zha, and Tianmin Xu. Automatic tooth segmentation and dense correspondence of 3d dental model. In Medical Image Computing and Computer Assisted Intervention–MICCAI 2020: 23rd International Conference, Lima, Peru, October 4–8, 2020, Proceedings, Part IV 23, pages 703–712. Springer, 2020

  8. [8]

    Two-stage mesh deep learning for automated tooth segmentation and landmark localization on 3d intraoral scans

    Tai-Hsien Wu, Chunfeng Lian, Sanghee Lee, Matthew Pastewait, Christian Piers, Jie Liu, Fan Wang, Li Wang, Chiung-Ying Chiu, Wenchi Wang, et al. Two-stage mesh deep learning for automated tooth segmentation and landmark localization on 3d intraoral scans. IEEE transactions on medical imaging, 41(11):3158–3166, 2022

Show all 63 references
  1. [9]

    Automatic landmark identification on intraoralscans

    Baptiste Baquero, Maxime Gillot, Lucia Cevidanes, Najla Al Turkestani, Marcela Gurgel, Mathieu Leclercq, Jonas Bianchi, Marilia Yatabe, Antonio Ruellas, Camila Massaro, et al. Automatic landmark identification on intraoralscans. In Workshop on Clinical Image-Based Procedures, ...

  2. [10]

    Multi-view 3d object detection network for autonomous driving

    Xiaozhi Chen, Huimin Ma, Ji Wan, Bo Li, and Tian Xia. Multi-view 3d object detection network for autonomous driving. In Proceedings of the IEEE conference on Computer Vision and Pattern Recognition, pages 1907–1915, 2017

  3. [11]

    Rotationnet: Joint object categorization and pose estimation using multiviews from unsupervised viewpoints

    Asako Kanezaki, Yasuyuki Matsushita, and Yoshifumi Nishida. Rotationnet: Joint object categorization and pose estimation using multiviews from unsupervised viewpoints. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 5010–5019, 2018

  4. [12]

    Pointpillars: Fast encoders for object detection from point clouds

    Alex H Lang, Sourabh V ora, Holger Caesar, Lubing Zhou, Jiong Yang, and Oscar Beijbom. Pointpillars: Fast encoders for object detection from point clouds. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 12697–12705, 2019

  5. [13]

    Multi-view convolutional neural networks for 3d shape recognition

    Hang Su, Subhransu Maji, Evangelos Kalogerakis, and Erik Learned-Miller. Multi-view convolutional neural networks for 3d shape recognition. In Proceedings of the IEEE international conference on computer vision , pages 945–953, 2015

  6. [14]

    V oxnet: A 3d convolutional neural network for real-time object recognition

    Daniel Maturana and Sebastian Scherer. V oxnet: A 3d convolutional neural network for real-time object recognition. In 2015 IEEE/RSJ international conference on intelligent robots and systems (IROS), pages 922–928. IEEE, 2015

  7. [15]

    Semantic scene completion from a single depth image

    Shuran Song, Fisher Yu, Andy Zeng, Angel X Chang, Manolis Savva, and Thomas Funkhouser. Semantic scene completion from a single depth image. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 1746–1754, 2017

  8. [16]

    4d spatio-temporal convnets: Minkowski convolutional neural networks

    Christopher Choy, JunYoung Gwak, and Silvio Savarese. 4d spatio-temporal convnets: Minkowski convolutional neural networks. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 3075–3084, 2019

  9. [17]

    3d semantic segmentation with submanifold sparse convolutional networks

    Benjamin Graham, Martin Engelcke, and Laurens Van Der Maaten. 3d semantic segmentation with submanifold sparse convolutional networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 9224–9232, 2018

  10. [18]

    O-cnn: Octree-based convolutional neural networks for 3d shape analysis

    Peng-Shuai Wang, Yang Liu, Yu-Xiao Guo, Chun-Yu Sun, and Xin Tong. O-cnn: Octree-based convolutional neural networks for 3d shape analysis. ACM Transactions On Graphics (TOG), 36(4):1–11, 2017

  11. [19]

    Pointnet: Deep learning on point sets for 3d classification and segmentation

    Charles R Qi, Hao Su, Kaichun Mo, and Leonidas J Guibas. Pointnet: Deep learning on point sets for 3d classification and segmentation. InProceedings of the IEEE conference on computer vision and pattern recognition, pages 652–660, 2017. 19

  12. [20]

    Pointnet++: Deep hierarchical feature learning on point sets in a metric space

    Charles Ruizhongtai Qi, Li Yi, Hao Su, and Leonidas J Guibas. Pointnet++: Deep hierarchical feature learning on point sets in a metric space. Advances in neural information processing systems, 30, 2017

  13. [21]

    Pointnext: Revisiting pointnet++ with improved training and scaling strategies

    Guocheng Qian, Yuchen Li, Houwen Peng, Jinjie Mai, Hasan Hammoud, Mohamed Elhoseiny, and Bernard Ghanem. Pointnext: Revisiting pointnet++ with improved training and scaling strategies. Advances in neural information processing systems, 35:23192–23204, 2022

  14. [22]

    Rethinking network design and local geometry in point cloud: A simple residual mlp framework

    Xu Ma, Can Qin, Haoxuan You, Haoxi Ran, and Yun Fu. Rethinking network design and local geometry in point cloud: A simple residual mlp framework. arXiv preprint arXiv:2202.07123, 2022

  15. [23]

    Dynamic graph cnn for learning on point clouds

    Yue Wang, Yongbin Sun, Ziwei Liu, Sanjay E Sarma, Michael M Bronstein, and Justin M Solomon. Dynamic graph cnn for learning on point clouds. ACM Transactions on Graphics (tog), 38(5):1–12, 2019

  16. [24]

    Dynamic edge-conditioned filters in convolutional neural networks on graphs

    Martin Simonovsky and Nikos Komodakis. Dynamic edge-conditioned filters in convolutional neural networks on graphs. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 3693–3702, 2017

  17. [25]

    Pointweb: Enhancing local neighborhood features for point cloud processing

    Hengshuang Zhao, Li Jiang, Chi-Wing Fu, and Jiaya Jia. Pointweb: Enhancing local neighborhood features for point cloud processing. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 5565–5573, 2019

  18. [26]

    Deepgcns: Can gcns go as deep as cnns? In Proceedings of the IEEE/CVF international conference on computer vision, pages 9267–9276, 2019

    Guohao Li, Matthias Muller, Ali Thabet, and Bernard Ghanem. Deepgcns: Can gcns go as deep as cnns? In Proceedings of the IEEE/CVF international conference on computer vision, pages 9267–9276, 2019

  19. [27]

    Point transformer

    Hengshuang Zhao, Li Jiang, Jiaya Jia, Philip HS Torr, and Vladlen Koltun. Point transformer. In Proceedings of the IEEE/CVF international conference on computer vision, pages 16259–16268, 2021

  20. [28]

    Pct: Point cloud transformer

    Meng-Hao Guo, Jun-Xiong Cai, Zheng-Ning Liu, Tai-Jiang Mu, Ralph R Martin, and Shi-Min Hu. Pct: Point cloud transformer. Computational Visual Media, 7:187–199, 2021

  21. [29]

    Swin3d: A pretrained transformer backbone for 3d indoor scene understanding

    Yu-Qi Yang, Yu-Xiao Guo, Jian-Yu Xiong, Yang Liu, Hao Pan, Peng-Shuai Wang, Xin Tong, and Baining Guo. Swin3d: A pretrained transformer backbone for 3d indoor scene understanding. arXiv preprint arXiv:2304.06906, 2023

  22. [30]

    Efficient 3d semantic segmentation with superpoint transformer

    Damien Robert, Hugo Raguet, and Loic Landrieu. Efficient 3d semantic segmentation with superpoint transformer. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 17195–17204, 2023

  23. [31]

    Point transformer v2: Grouped vector attention and partition-based pooling

    Xiaoyang Wu, Yixing Lao, Li Jiang, Xihui Liu, and Hengshuang Zhao. Point transformer v2: Grouped vector attention and partition-based pooling. Advances in Neural Information Processing Systems, 35:33330–33342, 2022

  24. [32]

    Point transformer v3: Simpler faster stronger

    Xiaoyang Wu, Li Jiang, Peng-Shuai Wang, Zhijian Liu, Xihui Liu, Yu Qiao, Wanli Ouyang, Tong He, and Hengshuang Zhao. Point transformer v3: Simpler faster stronger. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 4840–4851, 2024

  25. [33]

    Deep learning approach to semantic segmentation in 3d point cloud intra-oral scans of teeth

    Farhad Ghazvinian Zanjani, David Anssari Moin, Bas Verheij, Frank Claessen, Teo Cherici, Tao Tan, et al. Deep learning approach to semantic segmentation in 3d point cloud intra-oral scans of teeth. InInternational Conference on Medical Imaging with Deep Learning, pages 557–571...

  26. [34]

    Pointcnn: Convolution on x-transformed points

    Yangyan Li, Rui Bu, Mingchao Sun, Wei Wu, Xinhan Di, and Baoquan Chen. Pointcnn: Convolution on x-transformed points. Advances in neural information processing systems, 31, 2018

  27. [35]

    Tooth segmentation and labeling from digital dental casts

    Diya Sun, Yuru Pei, Guangying Song, Yuke Guo, Gengyu Ma, Tianmin Xu, and Hongbin Zha. Tooth segmentation and labeling from digital dental casts. In 2020 IEEE 17th International Symposium on Biomedical Imaging (ISBI), pages 669–673. IEEE, 2020

  28. [36]

    Feastnet: Feature-steered graph convolutions for 3d shape analysis

    Nitika Verma, Edmond Boyer, and Jakob Verbeek. Feastnet: Feature-steered graph convolutions for 3d shape analysis. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 2598–2606, 2018

  29. [37]

    Mask-mcnet: Instance segmentation in 3d point cloud of intra-oral scans

    Farhad Ghazvinian Zanjani, David Anssari Moin, Frank Claessen, Teo Cherici, Sarah Parinussa, Arash Pourtahe- rian, Svitlana Zinger, and Peter HN de With. Mask-mcnet: Instance segmentation in 3d point cloud of intra-oral scans. In Medical Image Computing and Computer Assisted I...

  30. [38]

    Tsegnet: An efficient and accurate tooth segmentation network on 3d dental model

    Zhiming Cui, Changjian Li, Nenglun Chen, Guodong Wei, Runnan Chen, Yuanfeng Zhou, Dinggang Shen, and Wenping Wang. Tsegnet: An efficient and accurate tooth segmentation network on 3d dental model. Medical Image Analysis, 69:101949, 2021

  31. [39]

    Dbganet: dual-branch geometric attention network for accurate 3d tooth segmentation

    Zhijie Lin, Zhaoshui He, Xu Wang, Bing Zhang, Chang Liu, Wenqing Su, Ji Tan, and Shengli Xie. Dbganet: dual-branch geometric attention network for accurate 3d tooth segmentation. IEEE Transactions on Circuits and Systems for Video Technology, 2023. 20

  32. [40]

    Self-supervised learning with masked autoencoders for teeth segmentation from intra-oral 3d scans

    Amani Almalki and Longin Jan Latecki. Self-supervised learning with masked autoencoders for teeth segmentation from intra-oral 3d scans. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 7820–7830, 2024

  33. [41]

    Meshmae: Masked autoencoders for 3d mesh data analysis

    Yaqian Liang, Shanshan Zhao, Baosheng Yu, Jing Zhang, and Fazhi He. Meshmae: Masked autoencoders for 3d mesh data analysis. In European Conference on Computer Vision, pages 37–54. Springer, 2022

  34. [42]

    Feature detection on 3d face surfaces for pose normalisation and recognition

    Chris Maes, Thomas Fabry, Johannes Keustermans, Dirk Smeets, Paul Suetens, and Dirk Vandermeulen. Feature detection on 3d face surfaces for pose normalisation and recognition. In 2010 Fourth IEEE International Conference on Biometrics: Theory, Applications and Systems (BTAS), ...

  35. [43]

    A robust 3d interest points detector based on harris operator

    Ivan Sipiran and Benjamin Bustos. A robust 3d interest points detector based on harris operator. In 3DOR@ Eurographics, pages 7–14, 2010

  36. [44]

    Salient local 3d features for 3d shape retrieval

    Afzal Godil and Asim Imdad Wagan. Salient local 3d features for 3d shape retrieval. In Three-Dimensional Imaging, Interaction, and Measurement, volume 7864, pages 275–282. SPIE, 2011

  37. [45]

    Curvature-direction measures for 3d feature detection

    JinJiang Li and Hui Fan. Curvature-direction measures for 3d feature detection. Science China Information Sciences, 56:1–9, 2013

  38. [46]

    Deeppose: Human pose estimation via deep neural networks

    Alexander Toshev and Christian Szegedy. Deeppose: Human pose estimation via deep neural networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 1653–1660, 2014

  39. [47]

    Human pose estimation with iterative error feedback

    Joao Carreira, Pulkit Agrawal, Katerina Fragkiadaki, and Jitendra Malik. Human pose estimation with iterative error feedback. In Proceedings of the IEEE conference on computer vision and pattern recognition , pages 4733–4742, 2016

  40. [48]

    Vitpose: Simple vision transformer baselines for human pose estimation

    Yufei Xu, Jing Zhang, Qiming Zhang, and Dacheng Tao. Vitpose: Simple vision transformer baselines for human pose estimation. Advances in Neural Information Processing Systems, 35:38571–38584, 2022

  41. [49]

    Spatial-aware regression for keypoint localization

    Dongkai Wang and Shiliang Zhang. Spatial-aware regression for keypoint localization. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 624–633, 2024

  42. [50]

    Flowing convnets for human pose estimation in videos

    Tomas Pfister, James Charles, and Andrew Zisserman. Flowing convnets for human pose estimation in videos. In Proceedings of the IEEE international conference on computer vision, pages 1913–1921, 2015

  43. [51]

    Joint training of a convolutional network and a graphical model for human pose estimation

    Jonathan J Tompson, Arjun Jain, Yann LeCun, and Christoph Bregler. Joint training of a convolutional network and a graphical model for human pose estimation. Advances in neural information processing systems, 27, 2014

  44. [52]

    Detecting 3d points of interest using multiple features and stacked auto-encoder

    Zhenyu Shu, Shiqing Xin, Xin Xu, Ligang Liu, and Ladislav Kavan. Detecting 3d points of interest using multiple features and stacked auto-encoder. IEEE transactions on visualization and computer graphics, 25(8):2583–2596, 2018

  45. [53]

    Deep high-resolution representation learning for human pose estimation

    Ke Sun, Bin Xiao, Dong Liu, and Jingdong Wang. Deep high-resolution representation learning for human pose estimation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages 5693–5703, 2019

  46. [54]

    Transpose: Keypoint localization via transformer

    Sen Yang, Zhibin Quan, Mu Nie, and Wankou Yang. Transpose: Keypoint localization via transformer. In Proceedings of the IEEE/CVF international conference on computer vision, pages 11802–11812, 2021

  47. [55]

    Detecting anatomical landmarks for fast alzheimer’s disease diagnosis

    Jun Zhang, Yue Gao, Yaozong Gao, Brent C Munsell, and Dinggang Shen. Detecting anatomical landmarks for fast alzheimer’s disease diagnosis. IEEE transactions on medical imaging, 35(12):2524–2533, 2016

  48. [56]

    Hierarchical fully convolutional network for joint atrophy localization and alzheimer’s disease diagnosis using structural mri

    Chunfeng Lian, Mingxia Liu, Jun Zhang, and Dinggang Shen. Hierarchical fully convolutional network for joint atrophy localization and alzheimer’s disease diagnosis using structural mri. IEEE transactions on pattern analysis and machine intelligence, 42(4):880–893, 2018

  49. [57]

    Context-guided fully convolutional networks for joint craniomaxillofacial bone segmentation and landmark digitization

    Jun Zhang, Mingxia Liu, Li Wang, Si Chen, Peng Yuan, Jianfu Li, Steve Guo-Fang Shen, Zhen Tang, Ken- Chung Chen, James J Xia, et al. Context-guided fully convolutional networks for joint craniomaxillofacial bone segmentation and landmark digitization. Medical image analysis, 6...

  50. [58]

    nnmamba: 3d biomedical image segmentation, classification and landmark detection with state space model

    Haifan Gong, Luoyao Kang, Yitao Wang, Xiang Wan, and Haofeng Li. nnmamba: 3d biomedical image segmentation, classification and landmark detection with state space model. arXiv preprint arXiv:2402.03526, 2024

  51. [59]

    Robust teeth detection in 3d dental scans by automated multi-view landmarking

    Tibor Kubík and Michal Španˇel. Robust teeth detection in 3d dental scans by automated multi-view landmarking. In Proceedings of the 15th International Joint Conference on Biomedical Engineering Systems and Technologies (BIOSTEC 2022) - BIOIMAGING, pages 24–34. INSTICC, SciTeP...

  52. [60]

    Development of intra-oral automated landmark recognition (alr) for dental and occlusal outcome measurements

    Brénainn Woodsend, Eirini Koufoudaki, Ping Lin, Grant McIntyre, Ahmed El-Angbawi, Azad Aziz, William Shaw, Gunvor Semb, Gowri Vijay Reesu, and Peter A Mossey. Development of intra-oral automated landmark recognition (alr) for dental and occlusal outcome measurements. European ...

  53. [61]

    Teeth3ds+: an extended benchmark for intraoral 3d scans analysis

    Achraf Ben-Hamadou, Nour Neifar, Ahmed Rekik, Oussama Smaoui, Firas Bouzguenda, Sergi Pujades, Edmond Boyer, and Edouard Ladroit. Teeth3ds+: an extended benchmark for intraoral 3d scans analysis. arXiv preprint arXiv:2210.06094, 2022

  54. [62]

    Model evaluation, model selection, and algorithm selection in machine learning

    Sebastian Raschka. Model evaluation, model selection, and algorithm selection in machine learning. (arXiv:1811.12808), November 2020. arXiv:1811.12808

  55. [63]

    Adam: A method for stochastic optimization

    Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. 22

Pith tools

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