Pith. sign in

REVIEW 3 major objections 5 minor 50 references

L2G Auto-encoder: Understanding Point Clouds by Local-to-Global Reconstruction with Hierarchical Self-Attention

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

Pith's one-line read Local-to-global reconstruction with hierarchical self-attention lets an unsupervised auto-encoder outperform prior point cloud methods.

desk verdict A promising point-cloud autoencoder architecture that is undermined by an interpolation layer whose constant makes the central local-to-global mechanism numerically inert, plus test-set tuning. read the letter →

arxiv 1908.00720 v1 pith:3WWRDQWC submitted 2019-08-02 cs.CV cs.LG

classification cs.CVcs.LG
keywords pointcloudsauto-encoderunsupervisedlearninghierarchicalself-attentionmulti-scalereconstructionRNNdecodershapeclassificationcloudupsampling
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

L2G-AE is an auto-encoder that tries to learn point cloud representations by reconstructing local multi-scale neighborhoods first and then the entire cloud, instead of only reconstructing the global shape. The encoder applies hierarchical self-attention at point, scale, and region levels to emphasize informative elements, and the decoder uses an RNN to output scale-area points before a fully connected layer outputs the whole point set. The authors report that the resulting unsupervised features reach 95.37% classification accuracy on ModelNet10 and 90.64% on ModelNet40, and 67.81% retrieval mAP on ModelNet10, outperforming prior unsupervised methods and several supervised ones. The paper also presents this as the first deep unsupervised point cloud upsampling approach.

What carries the argument

The carrying mechanism is hierarchical self-attention plus a sequential decoder. Self-attention computes attention weights between feature vectors at each same-level group, point level within each scale, scale level within each region, and region level across the cloud, and concatenates weighted outputs with inputs before MLP and max-pool aggregation. The decoder uses an interpolation layer to spread the global feature to local regions, an LSTM to emit the T=4 scale features as a sequence, skip links from the encoder, and FC layers to output both local areas and the global point cloud.

What would settle it

Retrain L2G-AE under the exact settings of the paper with Eq. (4)'s interpolation term removed (skip-link path only) and with c set to 1; if ModelNet10 accuracy remains 95.37% in both variants, the claimed spatial-interpolation mechanism is not what is carrying the local-to-global reconstruction.

Watch

Extended reading notes

Core claim

The paper's central claim is that local-to-global reconstruction is a stronger self-supervision signal for point cloud understanding than global-only reconstruction. Concretely, L2G-AE samples 256 centroids by farthest point sampling, builds four nested kNN scale areas (16, 32, 64, 128 points) around each, encodes point, scale, and region features with self-attention modules, and condenses everything into a 1024-dimensional global feature. The decoder propagates that feature through skip-linked local region features, an LSTM that treats the four scales as a sequence, and fully connected layers to produce both local area point sets and the final point cloud. Training minimizes the sum of local and global Chamfer distances. The authors claim this design is why their unsupervised features beat state-of-the-art methods on classification and retrieval and enable unsupervised upsampling.

Load-bearing premise

The load-bearing premise is that the interpolation in Eq. (4) actually injects spatial distribution information into decoding; with c=$10^{-10}$ and normalized coordinates, that term is numerically zero, so the premise may fail.

Editorial extensions

If this is right

  • If the reported numbers hold, unsupervised point cloud features can match or beat supervised feature extractors on classification and retrieval, reducing the need for labeled 3D data.
  • The local-to-global reconstruction loss can serve as a pretraining objective: features trained on reconstruction transfer to classification and retrieval without fine-tuning.
  • The same trained auto-encoder produces dense local reconstructions that can be downsampled, making deep unsupervised point cloud upsampling possible.
  • Hierarchical self-attention at point, scale, and region levels gives a reusable aggregation operator that other point cloud networks could adopt.

Reading between the lines

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

  • If the interpolation term in Eq. (4) is negligible as written, then L2G-AE's decoder is effectively a skip-connected MLP/RNN decoder; the reported gains would then come from the hierarchical self-attention encoder and the multi-scale Chamfer loss, not from the stated spatial interpolation.
  • The paper ablates self-attention only on ModelNet10; an editorially suggested extension is the same ablation on ModelNet40 to test whether the attention mechanism's contribution scales with category count.
  • Because local areas are nested neighborhoods, the method may transfer to partial or noisy scans without retraining, though the paper does not test this.
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 / 5 minor

Summary. The paper proposes L2G-AE, an unsupervised point-cloud autoencoder that encodes multi-scale neighborhoods around sampled centroids using a hierarchical self-attention mechanism and decodes them with an interpolation layer, an RNN, and fully connected layers to reconstruct both local scale areas and the global point cloud (Eqs. (4)-(11)). The method is evaluated on shape classification on ModelNet10/ModelNet40, shape retrieval on ModelNet10, and 16x point-cloud upsampling, reporting 95.37% and 90.64% unsupervised classification accuracy and a retrieval mAP of 67.81%. The central claim is that the local-to-global reconstruction scheme enables the learned global representation to capture local structure and thereby outperform state-of-the-art unsupervised and even some supervised methods.

Significance. If the proposed local-to-global reconstruction mechanism were properly validated, this would be a solid contribution to unsupervised point-cloud representation learning, with a principled decoder design and evaluation across three tasks. The paper includes useful ablations of the hierarchical self-attention modules (Table 5) and the local/global losses (Table 6), and it provides visualizations of attention at point, scale, and region levels. However, as written the central mechanism is not established: the interpolation constant in Eq. (4) makes the global-to-local path numerically inert, and the evaluation protocol (test-set hyperparameter selection, no error bars, mixed upsampling results) does not support the paper's 'outperforming' claims. These issues are substantial but fixable, so a major revision is appropriate.

major comments (3)
  1. [Section 3.3, Eq. (4) and Section 4.3] The interpolation layer is the only mechanism by which the global feature g reaches the RNN decoder, yet the constant c=10^-10 makes it numerically inert. After normalizing the input into the unit ball (Section 4.2), ||pi - p0||^2 <= 1 for p0=(0,0,0), so the term c(pi-p0)^2 g has norm at most 10^-10||g||. Concatenated with the unscaled skip-linked encoder features, this term is negligible, and any reconstruction gradient reaching g through Eq. (4) is scaled by 10^-10. Thus the local-to-global reconstruction described in Sections 3.3-3.5 is not exercised as written by the losses in Eqs. (9)-(11); Tables 5 and 6 do not isolate the interpolation term, so the reported gains cannot currently be attributed to that mechanism. Please correct the constant or the equation and add an explicit ablation of the interpolation path (e.g., varying c, or removing the skip link) before claiming that L2G-AE learns local structure through global-feature decoding.
  2. [Section 4.2 and Tables 1-4, 7-8] Hyperparameters M, C, D, and D_global are selected by comparing test-set accuracies on ModelNet10, and all headline accuracies are single runs without error bars. Under this protocol, the 0.07 percentage-point advantage over LGAN on ModelNet10 (95.37 vs 95.30) and the 0.49-point advantage on ModelNet40 (90.64 vs 90.15) are within likely run-to-run variation, so the claim of 'significantly outperforming' all unsupervised competitors is not established. Please use a held-out validation split for model selection and report means and standard deviations over multiple runs, or clearly state the selection and evaluation protocol if a validation split was used.
  3. [Section 4.6, Table 9] The narrative claims that L2G-AE outperforms state-of-the-art upsampling methods, but of the ten ModelNet10 classes, PU-Net achieves lower (better) Chamfer distance than L2G-AE in nine classes, and no aggregate mean or significance test is reported. Under the stated metric, the table supports at most a mixed result for an unsupervised method, not the paper's broad 'outperforming' claim, which also appears in the abstract. Please report the mean mCD over all classes, add statistical comparison, and revise the upsampling claim accordingly.
minor comments (5)
  1. [Section 4.2] The sentence 'With keeping the sampled points M = 384' appears to be a typo; the preceding paragraph selects M = 256 as optimal, so the dimension experiments in Tables 2-4 should presumably keep M = 256.
  2. [Section 3.4, Eqs. (5)-(7)] The weight notation is inconsistent: Eq. (6) uses W_theta, Eq. (7) uses W_theta_t, and the text refers to W_d. Please unify the notation.
  3. [Table 8] The caption and header are incomplete: 'The comparison of retrieval in terms of under ModelNet10' does not name the metric; the table should state that the reported quantity is mean Average Precision (mAP).
  4. [Table 9] The unit '10^-3' appears once in the table header; please make clear that all entries are in those units and also report the mean/aggregate mCD across all classes.
  5. [Section 2, Related Work] The name 'Point2Seqeuce' is a typo for Point2Sequence.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: benchmark results are independent of reconstruction training; self-citations are architectural, not load-bearing.

full rationale

The paper's central claims rest on benchmark evaluations: the encoder is trained by self-reconstruction losses (Eqs. 9-11), and the resulting global features are then evaluated by a linear SVM on ModelNet10 and ModelNet40. No parameter is fitted to the classification labels, so the reported accuracies are not forced by construction. The multi-scale establishment and self-attention design draw on prior work including the authors' Point2Sequence, but those citations justify architectural choices rather than the numerical outcomes; the comparison to MAP-VAE and other baselines is external. The interpolation term in Eq. (4) may be numerically questionable because c=10^-10 makes the global-to-local path extremely small, but that is a correctness or implementation concern, not a case where a prediction reduces to its own input by definition. No uniqueness theorem is invoked, no fitted input is renamed as a prediction, and no central derivation is equivalent to its assumptions by construction. Therefore no significant circularity is found.

Assumptions & free parameters 7 free parameters · 3 assumptions · 0 invented entities

The central claim rests on standard deep learning mathematics and the domain assumption that Chamfer-distance reconstruction induces useful representations. The main ad hoc design choices are listed as free parameters, and the assumption that multi-scale areas form a meaningful ordered sequence for the RNN is a domain assumption without independent support.

free parameters (7)
  • M (number of centroids) = 256
    Tuned on ModelNet10 test accuracy in Table 1; affects coverage of local regions.
  • C (self-attention dimension) = 32
    Tuned on ModelNet10 test accuracy in Table 2.
  • D (local feature dimension) = 256
    Tuned on ModelNet10 test accuracy in Table 3.
  • D_global (global feature dimension) = 1024
    Tuned on ModelNet10 test accuracy in Table 4.
  • c (interpolation constant) = 1e-10
    Hand-chosen in Eq. (4); the value makes the interpolated feature effectively zero, undermining the claimed spatial mechanism.
  • gamma (loss weight) = 1
    Hand-chosen in Eq. (11); no sensitivity analysis.
  • Scale sizes (K_1..K_4) = 16, 32, 64, 128
    Chosen in Section 4.1 without ablation for each scale count.
assumptions (3)
  • domain assumption Chamfer distance is a valid reconstruction objective for learning discriminative point cloud features.
    Used in Eqs. (9)-(11) as the training loss; the paper provides no evidence that this objective specifically improves downstream classification beyond the reported experiments.
  • domain assumption Multi-scale kNN neighborhoods around farthest-point-sampled centroids capture the local geometry needed for representation learning.
    Section 3.1; inherited from PointNet++ and Point2Sequence.
  • ad hoc to paper The T scale areas in a local region can be treated as an ordered sequence for RNN decoding.
    Section 3.4; the order is arbitrary (by increasing K_t), and RNNs are not permutation invariant, so the choice affects results.

how reviews work

0 comments
Cite this review

Pith. "Pith review of L2G Auto-encoder: Understanding Point Clouds by Local-to-Global Reconstruction with Hierarchical Self-Attention." pith.science (2026). https://pith.science/paper/3WWRDQWC

@misc{pith2026190800720,
  author       = {Pith},
  title        = {Pith review of: L2G Auto-encoder: Understanding Point Clouds by Local-to-Global Reconstruction with Hierarchical Self-Attention},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/3WWRDQWC}},
  note         = {Machine review of arXiv:1908.00720}
}
read the original abstract

Auto-encoder is an important architecture to understand point clouds in an encoding and decoding procedure of self reconstruction. Current auto-encoder mainly focuses on the learning of global structure by global shape reconstruction, while ignoring the learning of local structures. To resolve this issue, we propose Local-to-Global auto-encoder (L2G-AE) to simultaneously learn the local and global structure of point clouds by local to global reconstruction. Specifically, L2G-AE employs an encoder to encode the geometry information of multiple scales in a local region at the same time. In addition, we introduce a novel hierarchical self-attention mechanism to highlight the important points, scales and regions at different levels in the information aggregation of the encoder. Simultaneously, L2G-AE employs a recurrent neural network (RNN) as decoder to reconstruct a sequence of scales in a local region, based on which the global point cloud is incrementally reconstructed. Our outperforming results in shape classification, retrieval and upsampling show that L2G-AE can understand point clouds better than state-of-the-art methods.

Figures

Figures reproduced from arXiv: 1908.00720 by the authors.

Figure 1
Figure 1. Illustration of our local to global auto-encoder architecture. In the encoder, multi-scale areas is established in each [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. A multi-scale example inside a local region of [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Self-attention module. The input of this module is [PITH_FULL_IMAGE:figures/full_fig_p003_3.png] view at source ↗
Figures from the paper (8 more)
Figure 4
Figure 4. Figure 4: The decoding process of the RNN layer. 3.4 RNN Layer Given the feature of local regions, we want to decode the scale level features. Due to the multi-scale setting, the features of different scales in a local region can be regarded as a feature sequence with length T .…
Figure 5
Figure 5. Figure 5: The reconstructed results with different sampled [PITH_FULL_IMAGE:figures/full_fig_p005_5.png]
Figure 6
Figure 6. Figure 6: The reconstruction results of L2G-AE with only the [PITH_FULL_IMAGE:figures/full_fig_p006_6.png]
Figure 7
Figure 7. Figure 7: The comparison of PR curves for retrieval under [PITH_FULL_IMAGE:figures/full_fig_p007_7.png]
Figure 9
Figure 9. Figure 9: Some reconstructed examples of L2G-AE. contains very limited information [PITH_FULL_IMAGE:figures/full_fig_p007_9.png]
Figure 11
Figure 11. Figure 11: Some examples of the attention in the scale level. [PITH_FULL_IMAGE:figures/full_fig_p008_11.png]
Figure 10
Figure 10. Figure 10: Some examples of the attention in the region level, [PITH_FULL_IMAGE:figures/full_fig_p008_10.png]
Figure 12
Figure 12. Figure 12: Some examples of the attention in the point level, [PITH_FULL_IMAGE:figures/full_fig_p008_12.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

50 extracted references · 44 canonical work pages

  1. [1]

    Panos Achlioptas, Olga Diamanti, Ioannis Mitliagkas, and Leonidas Guibas. 2018. Learning Representations and Generative Models for 3D Point Clouds. In ICML

  2. [2]

    Serge Belongie, Jitendra Malik, and Jan Puzicha. 2001. Shape Context: A New Descriptor for Shape Matching and Object Recognition. In NeurIPS. 831–837

  3. [3]

    Haowen Deng, Tolga Birdal, and Slobodan Ilic. 2018. PPF-FoldNet: Unsupervised Learning of Rotation Invariant 3D Local Descriptors. In ECCV

  4. [4]

    Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. 2009. Imagenet: A Large-Scale Hierarchical Image Database. In CVPR

  5. [5]

    Aleksey Golovinskiy, Vladimir G Kim, and Thomas Funkhouser. 2009. Shape- Based Recognition of 3D Point Clouds in Urban Environments. In ICCV. 2154– 2161

  6. [6]

    Zhizhong Han, Xinhai Liu, Yu-Shen Liu, and Matthias Zwicker. 2019. Parts4Feature: Learning 3D Global Features from Generally Semantic Parts in Multiple Views. In IJCAI

  7. [7]

    Zhizhong Han, Zhenbao Liu, Junwei Han, ChiMan Vong, Shuhui Bu, and C.L.P. Chen. 2019. Unsupervised Learning of 3D Local Features from Raw Voxels Based on a Novel Permutation Voxelization Strategy. IEEE Transactions on Cybernetics 49, 2 (2019), 481–494

  8. [8]

    Zhizhong Han, Zhenbao Liu, Junwei Han, Chi-Man Vong, Shuhui Bu, and C.L.Philip Chen. 2017. Mesh Convolutional Restricted Boltzmann Machines for Unsupervised Learning of Features With Structure Preservation on 3D Meshes. IEEE Transactions on Neural Network and Learning Systems 28, 10 (2017), 2268 – 2281

Show all 50 references
  1. [9]

    Zhizhong Han, Zhenbao Liu, Junwei Han, Chi-Man Vong, Shuhui Bu, and Xuelong Li. 2016. Unsupervised 3D Local Feature Learning by Circle Convolutional Restricted Boltzmann Machine. IEEE Transactions on Image Processing 25, 11 (2016), 5331–5344

  2. [10]

    Zhizhong Han, Zhenbao Liu, Chi-Man Vong, Yu-Shen Liu, Shuhui Bu, Junwei Han, and CL Philip Chen. 2017. BoSCC: Bag of Spatial Context Correlations for Spatially Enhanced 3D Shape Representation. IEEE Transactions on Image Processing 26, 8 (2017), 3707–3720

  3. [11]

    Zhizhong Han, Zhenbao Liu, Chi-Man Vong, Yu-Shen Liu, Shuhui Bu, Junwei Han, and CL Philip Chen. 2018. Deep Spatiality: Unsupervised Learning of Spatially-Enhanced Global and Local 3D Features by Deep Neural Network with Coupled Softmax. IEEE Transactions on Image Processing 2...

  4. [12]

    Zhizhong Han, Honglei Lu, Zhenbao Liu, Chi-Man Vong, Yu-Shen Liua, Matthias Zwicker, Junwei Han, and CL Philip Chen. 2019. 3D2SeqViews: Aggregating Sequential Views for 3D Global Feature Learning by CNN with Hierarchical Attention Aggregation. IEEE Transactions on Image Proces...

  5. [13]

    Zhizhong Han, Mingyang Shang, Yu-Shen Liu, and Matthias Zwicker. 2019. View Inter-Prediction GAN: Unsupervised Representation Learning for 3D Shapes by Learning Global Shape Memories to Support Local View Predictions. In AAAI

  6. [14]

    Zhizhong Han, Mingyang Shang, Zhenbao Liu, Chi-Man Vong, Yu-Shen Liu, Matthias Zwicker, Junwei Han, and CL Philip Chen. 2018. SeqViews2SeqLabels: Learning 3D Global Features via Aggregating Sequential Views by RNN with Attention. IEEE Transactions on Image Processing 28, 2 (20...

  7. [15]

    Zhizhong Han, Mingyang Shang, Xiyang Wang, Yu-Shen Liu, and Matthias Zwicker. 2019. Yˆ 2Seq2Seq: Cross-Modal Representation Learning for 3D Shape and Text by Joint Reconstruction and Prediction of View and Word Sequences. In AAAI

  8. [16]

    Zhizhong Han, Xiyang Wang, Yu-Shen Liu, and Matthias Zwicker. 2019. Multi- Angle Point Cloud-VAE: Unsupervised Feature Learning for 3D Point Clouds from Multiple Angles by Joint Self-Reconstruction and Half-to-Half Prediction. In ICCV

  9. [17]

    Zhizhong Han, Xiyang Wang, Chi-Man Vong, Yu-Shen Liu, Matthias Zwicker, and CL Chen. 2019. 3DViewGraph: Learning Global Features for 3D Shapes from A Graph of Unordered Views with Attention. In IJCAI

  10. [18]

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. 2016. Deep Residual Learning for Image Recognition. In CVPR. 770–778

  11. [19]

    Sepp Hochreiter and Jürgen Schmidhuber. 1997. Long Short-Term Memory. Neural computation 9, 8 (1997), 1735–1780

  12. [20]

    Gao Huang, Zhuang Liu, Laurens Van Der Maaten, and Kilian Q Weinberger

  13. [21]

    Roman Klokov and Victor Lempitsky. 2017. Escape from Cells: Deep KD- Networks for the Recognition of 3D Point Cloud Models. In ICCV. 863–872

  14. [22]

    Hema S Koppula, Abhishek Anand, Thorsten Joachims, and Ashutosh Saxena

  15. [23]

    Jiaxin Li, Ben M Chen, and Gim Hee Lee. 2018. SO-Net: Self-Organizing Network for Point Cloud Analysis. In CVPR. 9397–9406

  16. [24]

    Yangyan Li, Rui Bu, Mingchao Sun, Wei Wu, Xinhan Di, and Baoquan Chen. 2018. PointCNN: Convolution on X-Transformed Points. In NeurIPS

  17. [25]

    Yangyan Li, Soeren Pirk, Hao Su, Charles R Qi, and Leonidas J Guibas. 2016. FPNN: Field Probing Neural Networks for 3D Data. In NeurIPS. 307–315

  18. [26]

    Xinhai Liu, Zhizhong Han, Yu-Shen Liu, and Matthias Zwicker. 2019. Point2Sequence: Learning the Shape Representation of 3D Point Clouds with an Attention-Based Sequence to Sequence Network. In AAAI

  19. [27]

    Charles R Qi, Wei Liu, Chenxia Wu, Hao Su, and Leonidas J Guibas. 2017. Frustum PointNets for 3D Object Detection from RGB-D Data. In CVPR

  20. [28]

    Charles R Qi, Hao Su, Kaichun Mo, and Leonidas J Guibas. 2016. PointNet: Deep Learning on Point Sets for 3D Classification and Segmentation. In CVPR

  21. [29]

    Charles Ruizhongtai Qi, Li Yi, Hao Su, and Leonidas J Guibas. 2017. PointNet++: Deep Hierarchical Feature Learning on Point Sets in a Metric Space. In NeurIPS. 5099–5108

  22. [30]

    Gernot Riegler, Ali Osman Ulusoy, and Andreas Geiger. 2017. OctNet: Learning Deep 3D Representations at High Resolutions. In CVPR, Vol. 3

  23. [31]

    Yiru Shen, Chen Feng, Yaoqing Yang, and Dong Tian. 2018. Mining Point Cloud Local Structures by Kernel Correlation and Graph Pooling. In CVPR, Vol. 4

  24. [32]

    M Simon, S Milz, K Amende, and HM Gross. 2018. Complex-YOLO: Real-Time 3D Object Detection on Point Clouds. arXiv preprint arXiv:1803.06199 (2018)

  25. [33]

    David Stutz and Andreas Geiger. 2018. Learning 3D Shape Completion from Laser Scan Data with Weak Supervision. In CVPR

  26. [34]

    Yuan Wang, Tianyue Shi, Peng Yun, Lei Tai, and Ming Liu. 2018. PointSeg: Real- Time Semantic Segmentation Based on 3D LiDAR Point Cloud. In arXiv preprint arXiv:1807.06288

  27. [35]

    Yue Wang, Yongbin Sun, Ziwei Liu, Sanjay E Sarma, Michael M Bronstein, and Justin M Solomon. 2018. Dynamic Graph CNN for Learning on Point Clouds. In arXiv preprint arXiv:1801.07829

  28. [36]

    Zhirong Wu, Shuran Song, Aditya Khosla, Fisher Yu, Linguang Zhang, Xiaoou Tang, and Jianxiong Xiao. 2015. 3D ShapeNets: A Deep Representation for Volumetric Shapes. In CVPR. 1912–1920

  29. [37]

    Saining Xie, Sainan Liu, Zeyu Chen, and Zhuowen Tu. 2018. Attentional ShapeContextNet for Point Cloud Recognition. In CVPR. 4606–4615

  30. [38]

    Yifan Xu, Tianqi Fan, Mingye Xu, Long Zeng, and Yu Qiao. 2018. SpiderCNN: Deep Learning on Point Sets with Parameterized Convolutional Filters. InECCV

  31. [39]

    Bin Yang, Wenjie Luo, and Raquel Urtasun. 2018. PIXOR: Real-Time 3D Object Detection from Point Clouds. In CVPR

  32. [40]

    Yaoqing Yang, Chen Feng, Yiru Shen, and Dong Tian. 2018. FoldingNet: Point Cloud Auto-Encoder via Deep Grid Deformation. In CVPR

  33. [41]

    Wang Yifan, Shihao Wu, Hui Huang, Daniel Cohen-Or, and Olga Sorkine- Hornung. 2019. Patch-Base Progressive 3D Point Set Upsampling. In CVPR

  34. [42]

    Haoxuan You, Yifan Feng, Rongrong Ji, and Yue Gao. 2018. PVNet: A Joint Convolutional Network of Point Cloud and Multi-View for 3D Shape Recognition. In ACM Multimedia Conference

  35. [44]

    Lequan Yu, Xianzhi Li, Chi-Wing Fu, Daniel Cohen-Or, and Pheng-Ann Heng

  36. [45]

    Han Zhang, Ian Goodfellow, Dimitris Metaxas, and Augustus Odena. 2018. Self- Attention Generative Adversarial Networks. In NeurIPS

  37. [46]

    Yongheng Zhao, Tolga Birdal, Haowen Deng, and Federico Tombari. 2019. 3D Point-Capsule Networks. In CVPR

  38. [47]

    Yin Zhou and Oncel Tuzel. 2017. VoxelNet: End-to-End Learning for Point Cloud Based 3D Object Detection. In CVPR

  39. [48]

    PU-Net: Point Cloud Upsampling Network. In CVPR

  40. [2011]

    In NeurIPS

    Semantic Labeling of 3D Point Clouds for Indoor Scenes. In NeurIPS. 244–252

  41. [2017]

    Densely Connected Convolutional Networks. In CVPR. 4700–4708

  42. [2018]

    EC-Net: An Edge-Aware Point Set Consolidation Network. In ECCV

Pith tools

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