REVIEW 3 major objections 4 minor 58 references
PCDreamer: Point Cloud Completion Through Multi-view Diffusion Priors
T0 review · 3 major / 4 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read This paper claims that multi-view images dreamed up by a diffusion model supply the missing geometric cues that let a single-view partial point cloud be completed with fine detail, and that fusing those images with attention plus…
desk verdict Solid integration of diffusion priors for point cloud completion, but the key causal claim is under-tested by a missing control and the evaluation is on self-built datasets. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the combination of a multi-view image generation pipeline and a two-stage shape refinery. The generation pipeline chains a depth-to-RGB translation model, a multi-view diffusion model, and a monocular depth estimator to turn one partial depth image into a set of posed multi-view depth images; this set is the imagined full-shape cue. The refinery consists of a multi-modality fuser, where a patch-based point-cloud encoder supplies queries and a pose-conditioned image encoder supplies keys/values in a cross-attention layer, followed by a shape consolidator that computes a per-point confidence score from self-attention over concatenated point-image features, filters the lowest 25 percent of points, and uses a per-point offset MLP to densify the remaining cloud. The confidence score is what lets the method tolerate the inevitable inconsistencies of diffusion-generated views.
What would settle it
Run PCDreamer on a set of partial point clouds built from slender, high-aspect-ratio objects such as earphones and thin tubular chair backs, and compare its Chamfer distance against the same model with the multi-view image branch removed; if the image-guided version is not systematically better on those cases, the claim that multi-view diffusion priors encode useful local cues fails exactly in the fine-detail regime the paper highlights.
Extended reading notes
Core claim
The paper's discovery is that multi-view diffusion priors, originally built for image-to-3D generation, can be repurposed as a free source of complete-shape cues for point cloud completion. Given a single-view partial point cloud, the method renders a depth image, converts it to RGB, asks a large multi-view diffusion model to generate several posed views of the full object, and estimates depth for each generated view. A patch-based Transformer encoder turns the partial point cloud into a query feature and the set of posed depth images into key/value features; cross-attention then produces a coarse complete point cloud. A confidence-guided consolidator scores each coarse point by its agreement with the multi-view image features and with other points, discards the low-confidence quarter, and upsamples the rest to a dense uniform completion. The authors report that this pipeline outperforms point-only and point-plus-image baselines on their datasets, especially for symmetric parts and fine structures that are invisible in the input view.
Load-bearing premise
The pipeline only completes as well as the imagined multi-view images are trustworthy: if the diffusion model generates inconsistent or geometrically wrong views (as it can for slender structures), the fusion and consolidation stages have no way to recover the true shape.
Editorial extensions
If this is right
- If the central claim holds, single-view completion of severely occluded objects improves materially because the diffusion prior supplies symmetric counterparts and thin structures that geometric-only methods guess randomly.
- The method is model-agnostic: swapping the multi-view generator (image-based versus video-based) changes results modestly, so better multi-view diffusion models should translate directly into better completion.
- Confidence filtering acts as a safety valve: generated views that are locally inconsistent are down-weighted before densification, which is why the pipeline can tolerate imperfect dreams.
- Because training uses only Chamfer distance on synthesized single-view partial clouds, the same recipe can be retrained on other completion benchmarks with paired partial and complete clouds.
Reading between the lines
- An upper-bound experiment the paper does not run: feeding ground-truth rendered multi-view depth images through the same fusion and consolidation modules would quantify exactly how much error is inherited from diffusion inconsistency versus from the fusion network itself.
- A testable extension: make the filtering threshold per-point and view-aware instead of a fixed 75/25 split, which could rescue slender structures like the earphone failure the paper shows in Fig. 9.
- The same fusion-plus-consolidation skeleton could be applied to LiDAR object completion in autonomous driving, using the viewpoint-selection strategy on real scans that the supplementary material begins to sketch.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. PCDreamer proposes a three-stage pipeline for single-view point cloud completion: it first generates multi-view RGB and depth images of the imagined shape using frozen large diffusion models (ControlNet for depth-to-RGB, Wonder3D or Stable Video Diffusion for multi-view generation, and DepthAnything for depth estimation), then fuses these multi-view depth images with the partial point cloud in a patch-based attention fuser to produce a coarse point cloud, and finally applies a confidence-based point filtering and upsampling stage to obtain a dense, uniform completion. Only the fusion and consolidation modules are trained, optimized end-to-end with a hyperbolic Chamfer distance loss. The authors construct single-view variants of the PCN and ShapeNet-55 datasets, retrain ten prior methods from scratch on these custom benchmarks, and report improved average CD and DCD along with competitive F1 scores. Ablations cover the choice of visual modality, the fusion design, the confidence filtering, the number of views, and the filtering percentage, while the supplementary provides qualitative results on real scans and comparisons with SDS-Complete and single-image 3D generation methods.
Significance. If the central attribution holds, the contribution is a practical recipe for injecting geometric cues from frozen multi-view diffusion priors into a small, trainable completion network, together with a confidence-guided consolidation mechanism that tolerates the known inconsistencies of those priors. The paper has notable strengths: it retrains all baselines from scratch on the same data, evaluates two independent diffusion backbones (Wonder3D and SVD), ablates the main design choices, and includes an honest failure-case analysis. The consolidation idea could be of independent value for any method that consumes imperfect multi-view priors. However, the significance is currently bounded by three issues: the headline claim that the diffusion prior content itself provides the useful cues is not directly tested, one headline table contains a metric on which a baseline clearly wins, and all quantitative claims are made on self-constructed benchmarks rather than the standard test protocols. The stress-test concern about the missing control lands: it targets the interpretation of the numbers rather than the numbers themselves, and it can be answered with additional experiments.
major comments (3)
- [§3.1, §4.3, Tabs. 4–5] The central claim that multi-view diffusion priors ‘encode both global and local shape cues’ that benefit completion is not directly tested by the current ablations. In every image-conditioned row of Tables 4 and 5, the multi-view depth images come from the same frozen chain (ControlNet + Wonder3D/SVD + DepthAnything); there is no condition in which these images are replaced by ground-truth renders at the same six camera poses, and no condition with non-informative images matched for encoder capacity. Since the partial-only row (CD 6.91, Table 4) removes the entire image encoder, the improvement to CD 6.49 with both modalities is also consistent with explanations that do not involve the diffusion prior’s content, such as added parameters or the mere availability of six additional views of the visible surface. This ambiguity is compounded by the depth-only ablation (CD 17.69), which shows that the raw generated depth images are nearly unusable on their own, and by the supplementary’s own list of defects in these images (inconsistencies, missing details, scale discrepancies, noise). I recommend adding two controls in Sec. 4.3: (i) the same fusion pipeline trained with ground-truth depth renders from the mesh at the six poses, and (ii) a non-informative image control (e.g., scrambled or blank depth images) to bound the contribution of the added encoder capacity. Without one of these controls, the paper’s headline attribution remains an interpretation rather than an established result.
- [§4.2, Tab. 2] Table 2 is in tension with the statement that the method ‘consistently outperforms other state-of-the-art approaches across all categories’ on ShapeNet-55. SVDFormer’s F-Score@1% is 0.447, which is clearly above Ours(SVD-MV) at 0.408 and Ours(Wonder3D) at 0.418, and the same pattern appears on the unseen categories of ShapeNet-34 in Table 3 (SVDFormer 0.348 vs. Ours(SVD-MV) 0.339). Since F1@1% is one of the three headline metrics the paper adopts, the text should acknowledge this trade-off and either explain it (for example, whether the confidence filtering removes points that contribute to the 1%-radius recall) or qualify the claim of uniform superiority. As written, the assertion of consistent superiority is contradicted by the paper’s own reported numbers.
- [§4.1–§4.2] All quantitative claims are made on a self-constructed single-view variant of PCN and ShapeNet-55, with a fixed viewpoint along the positive z-axis and back-projected partial point clouds. This is a legitimate design choice for studying the harder single-view setting, and retraining the baselines on the same data is fair internal comparison. However, because the test protocol differs from the standard PCN and ShapeNet-55 benchmarks, the reported numbers are not directly comparable with any published scores, and the claim of state-of-the-art performance rests solely on internally retrained baselines on the authors’ own split. I ask the authors to report results on the original benchmark protocols where feasible, to clearly frame the contribution as a new benchmark plus method otherwise, and to release the constructed datasets so that the comparison can be audited by the community.
minor comments (4)
- [Throughout] There are numerous typos and inconsistent notations that should be corrected: ‘Mutli-modality Fuser’ (Sec. 3.2), ‘baesd’ (Fig. 6 caption), ‘Poffet’ (Eq. 6), ‘Ff usion’ (Eq. 4), ‘0.0.617’ (Table 2, CRA-PCN DCD column), ‘the the image feature’ (Sec. 3.2), and the ungrammatical opening ‘PCDreamer, a novel algorithm’ in the introduction. Also, ‘we have proved in the ablation study’ (Sec. 3.2) should read ‘we show in the ablation study’.
- [§3.3, Eq. (5)] The definition of the confidence score is unclear: it is not specified over which dimension the average in Avg(dot(Q_i, K_i)) is taken, nor why a per-point self-attention dot product measures cross-view agreement. Please spell out the exact computation and the role of the sigmoid in producing the filtering percentage used in Sec. 4.4.
- [§3.1] The paper states that generated depth image values are normalized to the range [0, 1], but it does not say whether the normalization is per-view or joint across views. Since the supplementary acknowledges scale discrepancies between generated views, per-view normalization could distort relative depth cues; this choice should be specified and, if per-view, justified with an experiment or a comment.
- [Supplementary, Fig. A1] The generalization experiments on ScanObjectNN, KITTI, and randomly cropped point clouds are qualitative only. Given the introduction’s motivation of autonomous driving and robotics, a quantitative table on at least one real-scan set would substantially strengthen the claim of practical applicability.
Circularity Check
No circularity: PCDreamer is an empirical, held-out-evaluated pipeline whose components are trained against ground-truth point clouds; the diffusion priors are frozen external tools, not fitted to the target metric.
full rationale
The derivation chain is empirical rather than formal. Given a partial point cloud, the method renders a depth image, converts it to RGB with ControlNet, generates multi-view images with frozen Wonder3D/SVD, estimates depth with frozen DepthAnything, and trains the fusion/consolidation networks end-to-end with Chamfer/HyperCD losses against ground-truth meshes (Eqs. 7-9). The ground truth is sampled independently from meshes, and the test metrics are computed on held-out samples, so no predicted quantity is defined in terms of the target. The ablations (Tabs. 4-6) vary input modalities and modules, and the hyperparameters (view count, filtering percentage) are tuned on validation-style experiments, not folded into the definition of the metric. There are no self-citations in the reference list and no invoked 'uniqueness theorem' or ansatz citation that carries the argument. The skeptic's concern - that no control replaces the diffusion-generated views with ground-truth renders or non-informative views, so the causal claim about diffusion priors is under-tested - is a valid missing-control and interpretation critique, but it is not circularity: the paper does not reduce its central claim to its inputs by construction. Its own limitation section (Sec. 4.4 and supplementary) concedes inconsistent generation and failure cases, which weakens generalizability but does not make the derivation circular. Thus the appropriate circularity score is 0.
Assumptions & free parameters
free parameters (4)
- Confidence filtering percentage =
25% (keep top 75%)
- Number of multi-view images V =
6
- Patch radius r =
0.2
- Number of seed points K =
128
assumptions (3)
- domain assumption Multi-view diffusion models (Wonder3D, SVD) provide sufficiently view-consistent images that encode reliable shape cues for the missing regions.
- domain assumption Single-view partial point clouds generated by back-projecting a fixed-viewpoint depth map from ShapeNet meshes are representative of the single-view completion setting.
- domain assumption Retraining prior methods from scratch with their default configurations on the custom dataset is a fair comparison.
Cite this review
Pith. "Pith review of PCDreamer: Point Cloud Completion Through Multi-view Diffusion Priors." pith.science (2026). https://pith.science/paper/TF7D7DEB
@misc{pith2026241119036,
author = {Pith},
title = {Pith review of: PCDreamer: Point Cloud Completion Through Multi-view Diffusion Priors},
year = {2026},
howpublished = {\url{https://pith.science/paper/TF7D7DEB}},
note = {Machine review of arXiv:2411.19036}
}
read the original abstract
This paper presents PCDreamer, a novel method for point cloud completion. Traditional methods typically extract features from partial point clouds to predict missing regions, but the large solution space often leads to unsatisfactory results. More recent approaches have started to use images as extra guidance, effectively improving performance, but obtaining paired data of images and partial point clouds is challenging in practice. To overcome these limitations, we harness the relatively view-consistent multi-view diffusion priors within large models, to generate novel views of the desired shape. The resulting image set encodes both global and local shape cues, which are especially beneficial for shape completion. To fully exploit the priors, we have designed a shape fusion module for producing an initial complete shape from multi-modality input (i.e.,, images and point clouds), and a follow-up shape consolidation module to obtain the final complete shape by discarding unreliable points introduced by the inconsistency from diffusion priors. Extensive experimental results demonstrate our superior performance, especially in recovering fine details.
Figures
Figures from the paper (6 more)
Reference graph
Works this paper leans on
-
[1]
Cross- modal learning for image-guided point cloud shape comple- tion
Emanuele Aiello, Diego Valsesia, and Enrico Magli. Cross- modal learning for image-guided point cloud shape comple- tion. Advances in Neural Information Processing Systems , 35:37349–37362, 2022. 2
work page 2022
-
[2]
Stable video diffusion: Scaling latent video diffusion models to large datasets
Andreas Blattmann, Tim Dockhorn, Sumith Kulal, Daniel Mendelevitch, Maciej Kilian, Dominik Lorenz, Yam Levi, Zion English, Vikram V oleti, Adam Letts, et al. Stable video diffusion: Scaling latent video diffusion models to large datasets. arXiv preprint arXiv:2311.15127, 2023. 2, 3
arXiv 2023
-
[3]
Align your latents: High-resolution video synthesis with la- tent diffusion models
Andreas Blattmann, Robin Rombach, Huan Ling, Tim Dock- horn, Seung Wook Kim, Sanja Fidler, and Karsten Kreis. Align your latents: High-resolution video synthesis with la- tent diffusion models. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 22563–22575, 2023. 2
2023
-
[4]
Cesar Cadena, Luca Carlone, Henry Carrillo, Yasir Latif, Davide Scaramuzza, Jos ´e Neira, Ian Reid, and John J Leonard. Past, present, and future of simultaneous localiza- tion and mapping: Toward the robust-perception age. IEEE Transactions on robotics, 32(6):1309–1332, 2016. 1
work page 2016
-
[5]
Shapenet: An information-rich 3d model repository
Angel X Chang, Thomas Funkhouser, Leonidas Guibas, Pat Hanrahan, Qixing Huang, Zimo Li, Silvio Savarese, Manolis Savva, Shuran Song, Hao Su, et al. Shapenet: An information-rich 3d model repository. arXiv preprint arXiv:1512.03012, 2015. 5
arXiv 2015
-
[6]
Anchorformer: Point cloud completion from discriminative nodes
Zhikai Chen, Fuchen Long, Zhaofan Qiu, Ting Yao, Wen- gang Zhou, Jiebo Luo, and Tao Mei. Anchorformer: Point cloud completion from discriminative nodes. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 13581–13590, 2023. 1, 2, 5, 6, 8
work page 2023
-
[7]
Shape completion using 3d-encoder-predictor cnns and shape synthesis
Angela Dai, Charles Ruizhongtai Qi, and Matthias Nießner. Shape completion using 3d-encoder-predictor cnns and shape synthesis. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 5868–5877,
-
[8]
Vision meets robotics: The kitti dataset
Andreas Geiger, Philip Lenz, Christoph Stiller, and Raquel Urtasun. Vision meets robotics: The kitti dataset. The Inter- national Journal of Robotics Research , 32(11):1231–1237,
Show all 58 references
-
[9]
Animatediff: Animate your personalized text-to- image diffusion models without specific tuning, 2024
Yuwei Guo, Ceyuan Yang, Anyi Rao, Zhengyang Liang, Yaohui Wang, Yu Qiao, Maneesh Agrawala, Dahua Lin, and Bo Dai. Animatediff: Animate your personalized text-to- image diffusion models without specific tuning, 2024. 2
2024
-
[10]
3d semantic segmentation based on spatial-aware convolution and shape completion for augmented reality ap- plications
Yun-Chih Guo, Tzu-Hsuan Weng, Robin Fischer, and Li- Chen Fu. 3d semantic segmentation based on spatial-aware convolution and shape completion for augmented reality ap- plications. Computer Vision and Image Understanding, 224: 103550, 2022. 1
2022
-
[11]
High-resolution shape com- pletion using deep neural networks for global structure and local geometry inference
Xiaoguang Han, Zhen Li, Haibin Huang, Evangelos Kalogerakis, and Yizhou Yu. High-resolution shape com- pletion using deep neural networks for global structure and local geometry inference. In Proceedings of the IEEE inter- national conference on computer vision, pages 85–93, 2017. 2
2017
-
[12]
Latent video diffusion models for high-fidelity long video generation, 2023
Yingqing He, Tianyu Yang, Yong Zhang, Ying Shan, and Qifeng Chen. Latent video diffusion models for high-fidelity long video generation, 2023. 2
2023
-
[13]
Mvd-fusion: Single-view 3d via depth-consistent multi-view generation
Hanzhe Hu, Zhizhuo Zhou, Varun Jampani, and Shubham Tulsiani. Mvd-fusion: Single-view 3d via depth-consistent multi-view generation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 9698–9707, 2024. 2
2024
-
[14]
Render4completion: Synthesizing multi-view depth maps for 3d shape completion
Tao Hu, Zhizhong Han, Abhinav Shrivastava, and Matthias Zwicker. Render4completion: Synthesizing multi-view depth maps for 3d shape completion. In Proceedings of the IEEE/CVF International Conference on Computer Vision Workshops, pages 0–0, 2019. 2
2019
-
[15]
Pf-net: Point fractal network for 3d point cloud completion
Zitian Huang, Yikuan Yu, Jiawen Xu, Feng Ni, and Xinyi Le. Pf-net: Point fractal network for 3d point cloud completion. In Proceedings of the IEEE/CVF conference on computer vi- sion and pattern recognition, pages 7662–7670, 2020. 1
2020
-
[16]
Epidiff: Enhancing multi-view synthesis via localized epipolar-constrained diffusion
Zehuan Huang, Hao Wen, Junting Dong, Yaohui Wang, Yangguang Li, Xinyuan Chen, Yan-Pei Cao, Ding Liang, Yu Qiao, Bo Dai, et al. Epidiff: Enhancing multi-view synthesis via localized epipolar-constrained diffusion. In Proceedings of the IEEE/CVF Conference on Computer Vision and...
2024
-
[17]
Point-cloud completion with pretrained text-to-image diffusion models
Yoni Kasten, Ohad Rahamim, and Gal Chechik. Point-cloud completion with pretrained text-to-image diffusion models. arXiv preprint arXiv:2306.10533, 2023. 2, 1
2023 arXiv
-
[18]
Autoware on board: Enabling autonomous vehicles with embedded systems
Shinpei Kato, Shota Tokunaga, Yuya Maruyama, Seiya Maeda, Manato Hirabayashi, Yuki Kitsukawa, Abraham Monrroy, Tomohito Ando, Yusuke Fujii, and Takuya Azumi. Autoware on board: Enabling autonomous vehicles with embedded systems. In 2018 ACM/IEEE 9th International Conference on...
2018
-
[19]
Text2video-zero: Text- to-image diffusion models are zero-shot video generators
Levon Khachatryan, Andranik Movsisyan, Vahram Tade- vosyan, Roberto Henschel, Zhangyang Wang, Shant Navasardyan, and Humphrey Shi. Text2video-zero: Text- to-image diffusion models are zero-shot video generators. In Proceedings of the IEEE/CVF International Conference on Comput...
2023
-
[20]
Era3d: High-resolution multiview diffusion using efficient row-wise attention
Peng Li, Yuan Liu, Xiaoxiao Long, Feihu Zhang, Cheng Lin, Mengfei Li, Xingqun Qi, Shanghang Zhang, Wenhan Luo, Ping Tan, et al. Era3d: High-resolution multiview diffusion using efficient row-wise attention. arXiv preprint arXiv:2405.11616, 2024. 2
2024 arXiv
-
[21]
Craftsman: High-fidelity mesh generation with 3d native generation and interactive geometry refiner
Weiyu Li, Jiarui Liu, Rui Chen, Yixun Liang, Xuelin Chen, Ping Tan, and Xiaoxiao Long. Craftsman: High-fidelity mesh generation with 3d native generation and interactive geometry refiner. arXiv preprint arXiv:2405.14979, 2024. 7, 2
2024 arXiv
-
[22]
Hyperbolic cham- fer distance for point cloud completion
Fangzhou Lin, Yun Yue, Songlin Hou, Xuechu Yu, Yajun Xu, Kazunori D Yamada, and Ziming Zhang. Hyperbolic cham- fer distance for point cloud completion. In 2023 IEEE/CVF International Conference on Computer Vision (ICCV), pages 14549–14560, 2023. 5, 6
2023
-
[23]
Morphing and sampling network for dense point cloud completion
Minghua Liu, Lu Sheng, Sheng Yang, Jing Shao, and Shi- Min Hu. Morphing and sampling network for dense point cloud completion. In Proceedings of the AAAI conference on artificial intelligence, pages 11596–11603, 2020. 2 9
2020
-
[24]
One-2-3-45++: Fast single im- age to 3d objects with consistent multi-view generation and 3d diffusion
Minghua Liu, Ruoxi Shi, Linghao Chen, Zhuoyang Zhang, Chao Xu, Xinyue Wei, Hansheng Chen, Chong Zeng, Ji- ayuan Gu, and Hao Su. One-2-3-45++: Fast single im- age to 3d objects with consistent multi-view generation and 3d diffusion. In Proceedings of the IEEE/CVF Conference on ...
2024
-
[25]
Syncdreamer: Gen- erating multiview-consistent images from a single-view im- age
Yuan Liu, Cheng Lin, Zijiao Zeng, Xiaoxiao Long, Lingjie Liu, Taku Komura, and Wenping Wang. Syncdreamer: Gen- erating multiview-consistent images from a single-view im- age. arXiv preprint arXiv:2309.03453, 2023. 2
2023 arXiv
-
[26]
Wonder3d: Sin- gle image to 3d using cross-domain diffusion
Xiaoxiao Long, Yuan-Chen Guo, Cheng Lin, Yuan Liu, Zhiyang Dou, Lingjie Liu, Yuexin Ma, Song-Hai Zhang, Marc Habermann, Christian Theobalt, et al. Wonder3d: Sin- gle image to 3d using cross-domain diffusion. In Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pa...
2024
-
[27]
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. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 652–660,
-
[28]
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. 2
2017
-
[29]
Richdreamer: A generalizable normal-depth diffusion model for detail richness in text-to- 3d
Lingteng Qiu, Guanying Chen, Xiaodong Gu, Qi Zuo, Mu- tian Xu, Yushuang Wu, Weihao Yuan, Zilong Dong, Liefeng Bo, and Xiaoguang Han. Richdreamer: A generalizable normal-depth diffusion model for detail richness in text-to- 3d. In Proceedings of the IEEE/CVF Conference on Com- ...
-
[30]
Carfusion: Combining point tracking and part detection for dynamic 3d reconstruction of vehicles
N Dinesh Reddy, Minh V o, and Srinivasa G Narasimhan. Carfusion: Combining point tracking and part detection for dynamic 3d reconstruction of vehicles. In Proceedings of the IEEE conference on computer vision and pattern recog- nition, pages 1906–1915, 2018. 1
1906
-
[31]
Cra-pcn: Point cloud completion with intra-and inter-level cross-resolution transformers
Yi Rong, Haoran Zhou, Lixin Yuan, Cheng Mei, Jiahao Wang, and Tong Lu. Cra-pcn: Point cloud completion with intra-and inter-level cross-resolution transformers. In Pro- ceedings of the AAAI Conference on Artificial Intelligence , pages 4676–4685, 2024. 1, 2, 5, 6, 7
2024
-
[32]
Mvdream: Multi-view diffusion for 3d gen- eration
Yichun Shi, Peng Wang, Jianglong Ye, Mai Long, Kejie Li, and Xiao Yang. Mvdream: Multi-view diffusion for 3d gen- eration. arXiv preprint arXiv:2308.16512, 2023. 2
2023 arXiv
-
[33]
Learning 3d shape comple- tion from laser scan data with weak supervision
David Stutz and Andreas Geiger. Learning 3d shape comple- tion from laser scan data with weak supervision. InProceed- ings of the IEEE conference on computer vision and pattern recognition, pages 1955–1964, 2018. 2
1955
-
[34]
Lake-net: Topology-aware point cloud comple- tion by localizing aligned keypoints
Junshu Tang, Zhijun Gong, Ran Yi, Yuan Xie, and Lizhuang Ma. Lake-net: Topology-aware point cloud comple- tion by localizing aligned keypoints. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 1726–1735, 2022. 1
2022
-
[35]
Lgm: Large multi-view gaussian model for high-resolution 3d content creation
Jiaxiang Tang, Zhaoxi Chen, Xiaokang Chen, Tengfei Wang, Gang Zeng, and Ziwei Liu. Lgm: Large multi-view gaussian model for high-resolution 3d content creation. In European Conference on Computer Vision, pages 1–18. Springer, 2025. 1, 2
2025
-
[36]
Mvdiffusion: Enabling holistic multi- view image generation with correspondence-aware diffu- sion
Shitao Tang, Fuyang Zhang, Jiacheng Chen, Peng Wang, and Yasutaka Furukawa. Mvdiffusion: Enabling holistic multi- view image generation with correspondence-aware diffu- sion. In Advances in Neural Information Processing Systems, pages 51202–51233. Curran Associates, Inc., 2023. 2
2023
-
[37]
Revisiting point cloud classification: A new benchmark dataset and classifi- cation model on real-world data
Mikaela Angelina Uy, Quang-Hieu Pham, Binh-Son Hua, Duc Thanh Nguyen, and Sai-Kit Yeung. Revisiting point cloud classification: A new benchmark dataset and classifi- cation model on real-world data. InInternational Conference on Computer Vision (ICCV), 2019. 1
2019
-
[38]
Shape completion enabled robotic grasping
Jacob Varley, Chad DeChant, Adam Richardson, Joaqu ´ın Ruales, and Peter Allen. Shape completion enabled robotic grasping. In 2017 IEEE/RSJ international conference on intelligent robots and systems (IROS) , pages 2442–2447. IEEE, 2017. 1, 2
2017
-
[39]
Cas- caded refinement network for point cloud completion
Xiaogang Wang, Marcelo H Ang Jr, and Gim Hee Lee. Cas- caded refinement network for point cloud completion. In Proceedings of the IEEE/CVF conference on computer vi- sion and pattern recognition, pages 790–799, 2020. 2
2020
-
[40]
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. 3
2019
-
[41]
Crm: Single image to 3d textured mesh with convolutional reconstruction model
Zhengyi Wang, Yikai Wang, Yifei Chen, Chendong Xi- ang, Shuo Chen, Dajiang Yu, Chongxuan Li, Hang Su, and Jun Zhu. Crm: Single image to 3d textured mesh with convolutional reconstruction model. arXiv preprint arXiv:2403.05034, 2024. 2, 1
2024 arXiv
-
[42]
Pmp-net++: Point cloud completion by transformer-enhanced multi-step point mov- ing paths
Xin Wen, Peng Xiang, Zhizhong Han, Yan-Pei Cao, Pengfei Wan, Wen Zheng, and Yu-Shen Liu. Pmp-net++: Point cloud completion by transformer-enhanced multi-step point mov- ing paths. IEEE Transactions on Pattern Analysis and Ma- chine Intelligence, 45(1):852–867, 2022. 1, 2, 5
2022
-
[43]
Lever- aging single-view images for unsupervised 3d point cloud completion
Lintai Wu, Qijian Zhang, Junhui Hou, and Yong Xu. Lever- aging single-view images for unsupervised 3d point cloud completion. IEEE Transactions on Multimedia, 2023. 1, 2
2023
-
[44]
Balanced chamfer distance as a comprehen- sive metric for point cloud completion
Tong Wu, Liang Pan, Junzhe Zhang, Tai Wang, Ziwei Liu, and Dahua Lin. Balanced chamfer distance as a comprehen- sive metric for point cloud completion. Advances in Neural Information Processing Systems, 34:29088–29100, 2021. 5
2021
-
[45]
Snowflakenet: Point cloud completion by snowflake point deconvolution with skip-transformer
Peng Xiang, Xin Wen, Yu-Shen Liu, Yan-Pei Cao, Pengfei Wan, Wen Zheng, and Zhizhong Han. Snowflakenet: Point cloud completion by snowflake point deconvolution with skip-transformer. In Proceedings of the IEEE/CVF inter- national conference on computer vision , pages 5499–5509,
-
[46]
Grnet: Gridding resid- ual network for dense point cloud completion
Haozhe Xie, Hongxun Yao, Shangchen Zhou, Jiageng Mao, Shengping Zhang, and Wenxiu Sun. Grnet: Gridding resid- ual network for dense point cloud completion. In European conference on computer vision , pages 365–381. Springer,
-
[47]
Fbnet: Feedback network for point cloud completion
Xuejun Yan, Hongyu Yan, Jingjing Wang, Hang Du, Zhi- hong Wu, Di Xie, Shiliang Pu, and Li Lu. Fbnet: Feedback network for point cloud completion. In European Confer- 10 ence on Computer Vision , pages 676–693. Springer, 2022. 1
2022
-
[48]
Depth anything: Unleashing the power of large-scale unlabeled data
Lihe Yang, Bingyi Kang, Zilong Huang, Xiaogang Xu, Jiashi Feng, and Hengshuang Zhao. Depth anything: Unleashing the power of large-scale unlabeled data. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 10371–10381, 2024. 3
2024
-
[49]
Geoformer: Learning point cloud completion with tri-plane integrated transformer
Jinpeng Yu, Binbin Huang, Yuxuan Zhang, Huaxia Li, Xu Tang, and Shenghua Gao. Geoformer: Learning point cloud completion with tri-plane integrated transformer. In ACM Multimedia 2024. 4
2024
-
[50]
Pointr: Diverse point cloud comple- tion with geometry-aware transformers
Xumin Yu, Yongming Rao, Ziyi Wang, Zuyan Liu, Jiwen Lu, and Jie Zhou. Pointr: Diverse point cloud comple- tion with geometry-aware transformers. In Proceedings of the IEEE/CVF international conference on computer vision, pages 12498–12507, 2021. 1, 2, 5, 6, 7, 8
2021
-
[51]
Pcn: Point completion network
Wentao Yuan, Tejas Khot, David Held, Christoph Mertz, and Martial Hebert. Pcn: Point completion network. In 2018 in- ternational conference on 3D vision (3DV), pages 728–737. IEEE, 2018. 1, 2, 5, 6
2018
-
[52]
Adding conditional control to text-to-image diffusion models
Lvmin Zhang, Anyi Rao, and Maneesh Agrawala. Adding conditional control to text-to-image diffusion models. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 3836–3847, 2023. 3
2023
-
[53]
View- guided point cloud completion
Xuancheng Zhang, Yutong Feng, Siqi Li, Changqing Zou, Hai Wan, Xibin Zhao, Yandong Guo, and Yue Gao. View- guided point cloud completion. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 15890–15899, 2021. 1, 2
2021
-
[54]
Controlvideo: Training-free controllable text-to-video generation
Yabo Zhang, Yuxiang Wei, Dongsheng Jiang, Xiaopeng Zhang, Wangmeng Zuo, and Qi Tian. Controlvideo: Training-free controllable text-to-video generation. arXiv preprint arXiv:2305.13077, 2023. 2
2023 arXiv
-
[55]
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. 2
2021
-
[56]
Magicvideo: Efficient video generation with latent diffusion models
Daquan Zhou, Weimin Wang, Hanshu Yan, Weiwei Lv, Yizhe Zhu, and Jiashi Feng. Magicvideo: Efficient video generation with latent diffusion models. arXiv preprint arXiv:2211.11018, 2022. 2
2022 arXiv
-
[57]
Seedformer: Patch seeds based point cloud completion with upsample transformer
Haoran Zhou, Yun Cao, Wenqing Chu, Junwei Zhu, Tong Lu, Ying Tai, and Chengjie Wang. Seedformer: Patch seeds based point cloud completion with upsample transformer. In European conference on computer vision , pages 416–432. Springer, 2022. 1, 2, 5, 6
2022
-
[58]
Svdformer: Complementing point cloud via self-view augmentation and self-structure dual- generator
Zhe Zhu, Honghua Chen, Xing He, Weiming Wang, Jing Qin, and Mingqiang Wei. Svdformer: Complementing point cloud via self-view augmentation and self-structure dual- generator. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 14508–14518, 2023. 1...
2023
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.