Pith. sign in

REVIEW 3 major objections 5 minor 1 cited by

3DKeyAD: High-Resolution 3D Point Cloud Anomaly Detection via Keypoint-Guided Point Clustering

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

Pith's one-line read The paper claims that grouping points around geometric keypoints, rather than matching globally or to fixed neighborhoods, produces state-of-the-art anomaly detection on high-resolution 3D point clouds.

desk verdict Raw-only result is worth a look, but the λ=0.01 fusion row is likely a scale artifact and the keypoint gain is tiny. read the letter →

arxiv 2507.13110 v1 pith:HV7B4SEQ submitted 2025-07-17 cs.CV

classification cs.CV
keywords 3Danomalydetectionpointcloudkeypoint-guidedclusteringmulti-prototyperegistrationReal3D-ADindustrialinspectionFPFHunsupervisedlearning
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

3DKeyAD is a registration-based method for finding anomalies in high-resolution 3D point clouds, tested on the Real3D-AD benchmark. The paper claims that grouping points into local regions centered on geometrically salient keypoints—rather than comparing each point against the whole prototype surface or a fixed neighborhood—makes anomaly scoring both faster and more accurate. With this mechanism the method reaches 0.801 object-level AUROC and 0.861 point-level AUROC, surpassing the previous best ISMP (0.767/0.836), and even a variant using only raw 3D coordinates outperforms all prior published results on the object-level metric. The significance is that the approach is purely geometric, needing only four normal reference samples per category, and still localizes subtle structural defects.

What carries the argument

The central mechanism is keypoint-guided point clustering: a Voronoi-style partition of each registered point cloud around a small set of geometrically salient keypoints (typically five, found by ISS and subsampled by furthest-point sampling). These keypoints act as cluster centroids, so every cluster is centered on a feature-rich region rather than on arbitrary or random locations. All prototypes are rigidly aligned to one randomly chosen base prototype via RANSAC-initialized FPFH registration refined by point-to-plane ICP, and the same keypoint set is used to build matching clusters on the test sample. The per-cluster min-distance score, reweighted by local density and interpolated back to full resolution, is what carries the anomaly localization; the object-level score is the worst (maximum over clusters) of the per-point scores.

What would settle it

Compute per-category mean registration residual (point-to-plane distance after ICP) on Real3D-AD and correlate it with per-category point-level AUROC; if the correspondence assumption is the limiting factor, categories with larger residuals (like Duck or Seahorse) should show the worst localization, and re-running the method with each prototype in turn as the base should change scores substantially.

Watch

Extended reading notes

Core claim

On a fair reader's terms, the central discovery is that the choice of comparison scope matters as much as the features. Instead of global matching or fixed-radius neighborhoods, the method detects keypoints on one base prototype, subsamples them to five centroids, registers all prototypes and the test sample to that base, and assigns every point to the nearest centroid. Each merged cluster then acts as a local reference region, and the per-point anomaly score is the reweighted minimum Euclidean distance from the test point to any point in that cluster. The paper shows that this keypoint-guided clustering consistently beats memory-bank matching (RegAD, PatchCore, M3DM) and the internal-modality method ISMP on both object-level and point-level AUROC, and that fusion of raw coordinates with FPFH descriptors gives the best localization.

Load-bearing premise

The load-bearing premise is that one rigid alignment of every sample to a single randomly chosen prototype gives trustworthy spatial correspondence across the whole object, so that points grouped by the nearest of only five keypoints really do correspond to the same local region between test and reference.

Editorial extensions

If this is right

  • Even without any learned feature, the raw-coordinate variant (Raw+ISS+FS) reaches 0.792 object-level AUROC, above all prior published methods on Real3D-AD.
  • Fusing raw coordinates with FPFH descriptors yields the sharpest localization (0.861 point-level AUROC), improving on the best prior method by 0.025.
  • The fixed count of five keypoints is enough to define meaningful comparison regions, which keeps the method computationally light despite millions of input points.
  • The framework is insensitive to which keypoint detector is used: Harris3D, Harris6D, SIFT-3D and ISS all give competitive results, suggesting the clustering principle, not the detector, drives the gain.
  • Objects with high intra-class shape variation or very subtle defects (Seahorse, Duck) remain failure modes, attributed to registration limits and natural geometry being mistaken for anomalies.

Reading between the lines

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

  • The same keypoint-guided clustering could be applied with learned descriptors or with more than five centroids; the paper's ablations do not explore whether increasing the number of clusters trades localization sharpness against stability.
  • Since the method needs only four normal prototypes and one alignment per sample, it is a candidate for few-shot or online adaptation when a new object category appears, though the paper does not test this.
  • A direct test of the correspondence assumption would be to compare the current single-base alignment with per-test-sample alignment to the best-matching prototype; if the latter improves point AUROC on the failure categories, registration choice, not feature quality, is the bottleneck.
  • The object-level score (max over clusters of min point score) is conservative by design; a softer aggregation such as a high quantile might change the normal/anomaly separation and is not reported.
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 / 5 minor

Summary. The paper proposes 3DKeyAD, an unsupervised anomaly detection framework for high-resolution 3D point clouds. The method registers all normal prototypes to a randomly selected base prototype, detects geometrically salient keypoints, uses a fixed number of them as cluster centroids, and computes per-point anomaly scores as the minimum distance to a pooled cluster of registered prototype points. Optional fusion of raw-coordinate and FPFH scores is described in Eq. (15). The authors evaluate on the Real3D-AD benchmark, reporting object-level AUROC of 0.801 and point-level AUROC of 0.861 for the best variant (Raw+FPFH+ISS+FS), claiming state-of-the-art performance over ISMP and other baselines.

Significance. If the reported results are reproducible, 3DKeyAD is a simple and potentially useful baseline for high-resolution 3D point cloud anomaly detection: it combines classical keypoint detection with cluster-wise matching and avoids learned feature extraction in its strongest raw-only variant (0.792 O-AUROC, above ISMP's 0.767). The keypoint-guided clustering idea is plausible and the paper provides a broad ablation over keypoint detectors, subsampling strategies, and feature types on a public benchmark. However, the paper is purely empirical, releases no code or per-sample scores, and its headline result depends on a fusion equation that is numerically inconsistent with the reported tables. The contribution is therefore not currently auditable, and the claimed advantage of keypoint-guided clustering over FPS clustering is very small.

major comments (3)
  1. [§3.2, Eq. (15); §4.2; Tables 1–2] The fusion equation as written cannot produce the reported Raw+FPFH+ISS+FS row. With λ=0.01, the fused score is 0.01·s_raw + 0.99·s_FPFH, so the mean over categories must lie between the mean Raw+ISS+FS (0.792 O-AUROC, 0.811 P-AUROC) and FPFH+ISS+FS (0.680 O-AUROC, 0.770 P-AUROC) for any convex combination. The reported values 0.801 O-AUROC and 0.861 P-AUROC exceed both constituents, which is impossible. This indicates that either the two score channels are not on the scale implied by Eq. (15), an undocumented normalization is applied before fusion, or the reported λ is not the fusion weight. Because this row is the sole basis of the state-of-the-art claim, the authors must reconcile the equation with the tables, release per-category fused scores, or revise the claim.
  2. [§4.3, Tables 1–2] The keypoint-guided clustering mechanism is only weakly supported. The difference between Raw+ISS+FS and the no-keypoint baseline Raw+FS is +0.010 O-AUROC and +0.001 P-AUROC, and Raw+SIFT-3D+FS (0.780) is worse than Raw+FS (0.782). The reported advantage over the previous state of the art therefore comes almost entirely from the unverifiable Raw+FPFH fusion row, not from keypoint selection. To substantiate the paper's central mechanistic claim, the authors should report a non-keypoint FPFH+FS baseline and provide standard deviations or confidence intervals over multiple random base-prototype selections and keypoint subsampling runs, especially since the base prototype is chosen randomly (Sec. 3.1).
  3. [§3.1, Eqs. (3)–(9); Fig. 5] The method assumes that rigid registration of every prototype and test sample to one randomly chosen base prototype establishes reliable spatial correspondence, so that points can be meaningfully grouped by the nearest of only five keypoint centroids. No registration success rate or per-category error analysis is reported. The failure cases acknowledged in Fig. 5 (Seahorse, Duck, Toffees) are consistent with registration or clustering instability, but the paper does not quantify how sensitive the results are to the choice of base prototype, the number of keypoint centroids K′, or registration failures. This is load-bearing for the generality of the proposed approach and should be addressed either with additional experiments or with more cautious claims.
minor comments (5)
  1. [§4.2] The text says 'we used a reweighting factor λ = 0.01', but Eq. (15) is described as multi-feature fusion, while Eq. (11) also performs reweighting but contains no λ. Please clarify which equation λ refers to and avoid ambiguous terminology.
  2. [§3.2, Eqs. (1) and (13)] The symbol K is used both for the keypoint set (Eq. (1)) and for the number of nearest neighbors in the interpolation step (Eq. (13)); this is confusing and should be disambiguated.
  3. [§3.2, Eq. (11)] The reweighting formula in Eq. (11) includes the cluster size |C_T_j| inside exponentials; if raw and FPFH distances have different units, the behavior of this reweighting will differ across feature types, which is directly relevant to the fusion inconsistency in Eq. (15). The authors should state how distances are normalized, if at all.
  4. [References] Reference [20], described as the authors' previous conference work on which the method is built, has an incomplete bibliographic entry (missing page numbers or DOI); please provide full details so readers can identify the incremental contribution of this paper.
  5. [Tables 1–2] Per-category AUROC values vary widely (e.g., 0.652 for Airplane versus 0.904 for Toffees in the best O-AUROC row), yet no confidence intervals or significance tests are reported. Given the small mean differences among several variants, the authors should report variance or standard errors to support their comparative claims.

Circularity Check

0 steps flagged · score 2.0 of 10

No material circularity: the keypoint-clustering claim is tested on the public Real3D-AD benchmark, and the only self-citation [20] is descriptive rather than load-bearing.

full rationale

The paper does not attempt a first-principles derivation; it proposes an empirical pipeline and evaluates it on the public Real3D-AD benchmark. The central claim—that keypoint-guided clustering improves local anomaly scoring—is supported by ablations in Tables 1 and 2 that compare the no-keypoint variant (Raw+FS) with ISS/Harris/SIFT keypoint variants. This is an external empirical comparison, not a quantity defined to equal its input. The registration and scoring components (Sec. 3.1, Eqs. 3-14) are standard rigid alignment, nearest-keypoint partitioning, and nearest-neighbor distance; none of these equations defines the reported AUROC by construction. The only self-citation is [20], described as the base framework on which keypoint clustering is added; the present paper fully specifies the pipeline and reports its own experiments, so [20] is not load-bearing evidence. A numerical inconsistency is noted: the fused Raw+FPFH row (0.801 O-AUROC, 0.861 P-AUROC) is not obtainable from Eq. 15 with λ=0.01 and the reported constituent means (FPFH-only 0.680/0.770; raw-only 0.792/0.811) unless the score channels are implicitly rescaled. This is an internal-consistency and auditability concern, not circularity, because Eq. 15 does not by definition produce the reported table entry. The paper also acknowledges failure cases (Duck, Seahorse, Toffees), further indicating the method is not guaranteed by construction. Overall, no prediction reduces to its inputs; the empirical SOTA claim is externally testable against the public benchmark.

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

The method is a composition of known building blocks; the central claim rests on several domain assumptions about registration accuracy, cluster semantics, and interpolation fidelity, plus five hand-set hyperparameters. No new physical entities are introduced.

free parameters (5)
  • Number of keypoint centroids K' = 5
    Fixed by hand; controls cluster granularity and directly affects the comparison regions.
  • Prototype/test downsampling = 20000 / 1000 points
    Chosen to manage memory; aggressive test downsampling may discard small defects.
  • Fusion weight lambda = 0.01
    Hand-tuned; Eq. 15 is unnormalized, so lambda's effective contribution is scale-dependent and the reported jump from pure FPFH is suspicious.
  • KNN neighbors for interpolation = 3
    Used in Eq. 13 to spread point scores to full resolution; also possibly the K in Eq. 11, which is not separately specified.
  • Keypoint detector and subsampler = ISS + FPS (selected among several)
    Model selection on the benchmark; different choices change results by a few points.
assumptions (5)
  • domain assumption All samples in a category can be rigidly aligned to a single randomly chosen base prototype with sufficient accuracy for local comparison.
    Invoked in Sec. 3.1 step 3 (Eqs. 3-6); failure for complex shapes like Seahorse leads to false positives noted by the authors.
  • domain assumption Assigning each point to its nearest keypoint centroid produces semantically meaningful local regions.
    Eq. 7; the paper provides no analysis of cluster quality, and with only 5 centroids the regions are very coarse.
  • domain assumption The pooled reference cluster for each keypoint contains enough normal geometry that the min-distance to it is a reliable anomaly score.
    Eq. 10; registration error or intra-class variation can inject anomalous or outlier points into the reference cluster.
  • domain assumption Interpolating scores from 1,000 downsampled test points to the full point cloud via KNN preserves defect localization.
    Eq. 13; tiny defects smaller than the average spacing between the sampled points will be missed.
  • standard math Standard algorithms (RANSAC+ICP, FPFH, ISS/Harris3D/SIFT-3D) behave as expected on high-resolution industrial scans.
    These are established tools, but their parameters and failure modes are not discussed in this work.

how reviews work

0 comments
Cite this review

Pith. "Pith review of 3DKeyAD: High-Resolution 3D Point Cloud Anomaly Detection via Keypoint-Guided Point Clustering." pith.science (2026). https://pith.science/paper/HV7B4SEQ

@misc{pith2026250713110,
  author       = {Pith},
  title        = {Pith review of: 3DKeyAD: High-Resolution 3D Point Cloud Anomaly Detection via Keypoint-Guided Point Clustering},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/HV7B4SEQ}},
  note         = {Machine review of arXiv:2507.13110}
}
read the original abstract

High-resolution 3D point clouds are highly effective for detecting subtle structural anomalies in industrial inspection. However, their dense and irregular nature imposes significant challenges, including high computational cost, sensitivity to spatial misalignment, and difficulty in capturing localized structural differences. This paper introduces a registration-based anomaly detection framework that combines multi-prototype alignment with cluster-wise discrepancy analysis to enable precise 3D anomaly localization. Specifically, each test sample is first registered to multiple normal prototypes to enable direct structural comparison. To evaluate anomalies at a local level, clustering is performed over the point cloud, and similarity is computed between features from the test sample and the prototypes within each cluster. Rather than selecting cluster centroids randomly, a keypoint-guided strategy is employed, where geometrically informative points are chosen as centroids. This ensures that clusters are centered on feature-rich regions, enabling more meaningful and stable distance-based comparisons. Extensive experiments on the Real3D-AD benchmark demonstrate that the proposed method achieves state-of-the-art performance in both object-level and point-level anomaly detection, even using only raw features.

Figures

Figures reproduced from arXiv: 2507.13110 by the authors.

Figure 3
Figure 3. Flowchart of the preprocessing stage over proto￾types. inference but may compromise localization. Overall, while prior work has advanced detection accuracy, challenges re￾main in balancing fine-grained localization, generalization across shape variations, and computational efficiency. These gaps motivate our method, which leverages keypoint-guided clustering and registration to improve robustness and reso￾lution in … view at source ↗

Discussion (0). Sign in to comment.

Forward citations

Cited by 1 Pith paper

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

  1. Hierarchical Point-Patch Fusion with Adaptive Patch Codebook for 3D Shape Anomaly Detection

    cs.CV 2026-04 conditional novelty 6.0 of 10

    Adaptive multi-scale patch codebooks fused with point features via RoPE cross-attention improve 3D shape anomaly detection, especially for large structural industrial defects.

Reference graph

Works this paper leans on

26 extracted references · 21 canonical work pages · cited by 1 Pith paper

  1. [1]

    Im-iad: Industrial image anomaly detection benchmark in manufacturing,

    G. Xie, J. Wang, J. Liu, J. Lyu, Y . Liu, C. Wang, F. Zheng, and Y . Jin, “Im-iad: Industrial image anomaly detection benchmark in manufacturing,” IEEE Transactions on Cybernetics, vol.54, no.5, pp.2720–2733, 2024

  2. [2]

    Mvtec ad–a comprehensive real-world dataset for unsupervised anomaly detec- tion,

    P. Bergmann, M. Fauser, D. Sattlegger, and C. Steger, “Mvtec ad–a comprehensive real-world dataset for unsupervised anomaly detec- tion,” Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.9592–9600, 2019

  3. [3]

    The mvtec 3d- ad dataset for unsupervised 3d anomaly detection and localization,

    P. Bergmann, X. Jin, D. Sattlegger, and C. Steger, “The mvtec 3d- ad dataset for unsupervised 3d anomaly detection and localization,” arXiv preprint arXiv:2112.09045, 2021

  4. [4]

    Real3d-ad: A dataset of point cloud anomaly detection,

    J. Liu, G. Xie, X. Li, J. Wang, Y . Liu, C. Wang, F. Zheng, et al. , “Real3d-ad: A dataset of point cloud anomaly detection,” Thirty-seventh Conference on Neural Information Processing Sys- tems Datasets and Benchmarks Track, 2023

  5. [5]

    R3d- ad: Reconstruction via diffusion for 3d anomaly detection,

    Z. Zhou, L. Wang, N. Fang, Z. Wang, L. Qiu, and S. Zhang, “R3d- ad: Reconstruction via diffusion for 3d anomaly detection,” Euro- pean conference on computer vision, pp.91–107, Springer, 2024

  6. [6]

    Towards scal- able 3d anomaly detection and localization: A benchmark via 3d anomaly synthesis and a self-supervised learning network,

    W. Li, X. Xu, Y . Gu, B. Zheng, S. Gao, and Y . Wu, “Towards scal- able 3d anomaly detection and localization: A benchmark via 3d anomaly synthesis and a self-supervised learning network,” Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.22207–22216, 2024

  7. [7]

    Mc3d-ad: A unified geometry-aware reconstruction model for multi-category 3d anomaly detection,

    J. Cheng, C. Gao, J. Zhou, J. Wen, T. Dai, and J. Wang, “Mc3d-ad: A unified geometry-aware reconstruction model for multi-category 3d anomaly detection,” arXiv preprint arXiv:2505.01969, 2025

  8. [8]

    Tam- ing anomalies with down-up sampling networks: Group center pre- serving reconstruction for 3d anomaly detection,

    H. Liang, J. Zhang, T. Dai, L. Shen, J. Wang, and C. Gao, “Tam- ing anomalies with down-up sampling networks: Group center pre- serving reconstruction for 3d anomaly detection,” arXiv preprint arXiv:2507.03903, 2025

Show all 26 references
  1. [9]

    Pointcore: Efficient unsupervised point cloud anomaly detector us- ing local-global features,

    B. Zhao, Q. Xiong, X. Zhang, J. Guo, Q. Liu, X. Xing, and X. Xu, “Pointcore: Efficient unsupervised point cloud anomaly detector us- ing local-global features,” arXiv preprint arXiv:2403.01804, 2024

  2. [10]

    Mul- timodal industrial anomaly detection via hybrid fusion,

    Y . Wang, J. Peng, J. Zhang, R. Yi, Y . Wang, and C. Wang, “Mul- timodal industrial anomaly detection via hybrid fusion,” Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.8032–8041, 2023

  3. [11]

    To- wards high-resolution 3d anomaly detection via group-level feature contrastive learning,

    H. Zhu, G. Xie, C. Hou, T. Dai, C. Gao, J. Wang, and L. Shen, “To- wards high-resolution 3d anomaly detection via group-level feature contrastive learning,” Proceedings of the 32nd ACM International Conference on Multimedia, pp.4680–4689, 2024

  4. [12]

    Complementary pseudo multimodal feature for point cloud anomaly detection,

    Y . Cao, X. Xu, and W. Shen, “Complementary pseudo multimodal feature for point cloud anomaly detection,” Pattern Recognition, vol.156, p.110761, 2024

  5. [13]

    Towards zero- shot point cloud anomaly detection: A multi-view projection frame- work,

    Y . Cheng, Y . Cao, G. Xie, Z. Lu, and W. Shen, “Towards zero- shot point cloud anomaly detection: A multi-view projection frame- work,” arXiv preprint arXiv:2409.13162, 2024

  6. [14]

    Look inside for more: Internal spatial modality perception for 3d anomaly detection,

    H. Liang, G. Xie, C. Hou, B. Wang, C. Gao, and J. Wang, “Look inside for more: Internal spatial modality perception for 3d anomaly detection,” Proceedings of the AAAI Conference on Artificial Intel- ligence, pp.5146–5154, 2025

  7. [15]

    Teacher–student network for 3d point cloud anomaly detection with few normal samples,

    J. Qin, C. Gu, J. Yu, and C. Zhang, “Teacher–student network for 3d point cloud anomaly detection with few normal samples,” Expert Systems with Applications, vol.228, p.120371, 2023

  8. [16]

    Anomaly detection in 3d point clouds using deep geometric descriptors,

    P. Bergmann and D. Sattlegger, “Anomaly detection in 3d point clouds using deep geometric descriptors,” Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pp.2613–2623, 2023

  9. [17]

    Asym- metric student-teacher networks for industrial anomaly detection,

    M. Rudolph, T. Wehrbein, B. Rosenhahn, and B. Wandt, “Asym- metric student-teacher networks for industrial anomaly detection,” Proceedings of the IEEE/CVF winter conference on applications of computer vision, pp.2592–2602, 2023

  10. [18]

    Back to the feature: classical 3d features are (almost) all you need for 3d anomaly detection,

    E. Horwitz and Y . Hoshen, “Back to the feature: classical 3d features are (almost) all you need for 3d anomaly detection,” Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recog- nition, pp.2968–2977, 2023

  11. [19]

    Easynet: An easy network for 3d industrial anomaly detection,

    R. Chen, G. Xie, J. Liu, J. Wang, Z. Luo, J. Wang, and F. Zheng, “Easynet: An easy network for 3d industrial anomaly detection,” Proceedings of the 31st ACM International Conference on Multime- dia, pp.7038–7046, 2023

  12. [20]

    Boost- ing high-resolution 3d point cloud anomaly detection with geometric constraints,

    Z. Wang, K. Hotta, Y . Zou, Y . Ding, C. Zhang, and J. Yu, “Boost- ing high-resolution 3d point cloud anomaly detection with geometric constraints,” International Conference on Machine Vision, 2025

  13. [21]

    A combined corner and edge detec- tor,

    C. Harris, M. Stephens, et al., “A combined corner and edge detec- tor,” vol.15, no.50, pp.10–5244, 1988. W ANG et al.: 3DKEY AD: HIGH-RESOLUTION 3D POINT CLOUD ANOMALY DETECTION VIA KEYPOINT-GUIDED POINT CLUSTERING 9

  14. [22]

    Distinctive image features from scale-invariant key- points,

    D.G. Lowe, “Distinctive image features from scale-invariant key- points,” International journal of computer vision, vol.60, no.2, pp.91–110, 2004

  15. [23]

    Fast point feature histograms (fpfh) for 3d registration,

    R.B. Rusu, N. Blodow, and M. Beetz, “Fast point feature histograms (fpfh) for 3d registration,” 2009 IEEE international conference on robotics and automation, pp.3212–3217, IEEE, 2009

  16. [24]

    Efficient variants of the icp algo- rithm,

    S. Rusinkiewicz and M. Levoy, “Efficient variants of the icp algo- rithm,” Proceedings third international conference on 3-D digital imaging and modeling, pp.145–152, IEEE, 2001

  17. [25]

    Towards total recall in industrial anomaly detection,

    K. Roth, L. Pemula, J. Zepeda, B. Sch ¨olkopf, T. Brox, and P. Gehler, “Towards total recall in industrial anomaly detection,” Proceedings of the IEEE/CVF conference on computer vision and pattern recog- nition, pp.14318–14328, 2022

  18. [26]

    Intrinsic shape signatures: A shape descriptor for 3d object recognition,

    Y . Zhong, “Intrinsic shape signatures: A shape descriptor for 3d object recognition,” 2009 IEEE 12th international conference on computer vision workshops, ICCV Workshops, pp.689–696, IEEE, 2009

Pith tools

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