REVIEW 5 major objections 6 minor 1 cited by
Auto-Regressive Surface Cutting
T0 review · 5 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read SeamGPT turns 3D mesh cutting into a next-token prediction task, beating standard UV unwrappers on distortion.
desk verdict A genuinely new autoregressive formulation for surface cutting, but the SOTA UV claim is undercut by an unfair comparison and a metric that rewards fragmentation. 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 central mechanism is the seam-as-token sequence. Each seam is a list of 3D line segments, each line segment is its two endpoint vertices, and each vertex is three quantized coordinates, so the whole seam is a flat sequence of $6N_s$ tokens that a causal Transformer decodes auto-regressively. The order is canonicalized by sorting vertices in yzx order and then edges lexicographically, which makes the same geometric seam always appear as the same token string. Shape conditioning comes from a point cloud encoder that samples only from mesh vertices and edges (rather than the surface uniformly), which the paper shows is what keeps predicted seams aligned with mesh topology and improves convergence. The hourglass decoder (borrowed from mesh generation) lets coordinates, vertices, and edges be processed at three causal levels of abstraction.
What would settle it
Compare SeamGPT's average conformal distortion on the benchmarks against the same unwrapping pipeline fed randomly chosen seams of matched length; if random seams achieve similar distortion, then the reported numbers do not establish semantic quality. Also, ask professional artists to label whether a random sample of the training meshes' UV boundaries are intentional cuts or automatic unwrapping artifacts.
Extended reading notes
Core claim
Formulating surface cutting as next-token prediction over quantized 3D seam coordinates. Given a mesh, SeamGPT samples 61,440 points on vertices and edges, encodes them into a shape latent, then an hourglass causal transformer predicts the seam as an ordered list of line segments, with coordinates quantized to 1024 bins per axis and sorted by a fixed yzx ordering so the sequence has a canonical form. The model is trained with cross-entropy on seam tokens plus a KL regularizer on the shape embedding, and a length embedding lets the user control cutting granularity. The paper reports that this single autoregressive model outperforms XAtlas, Nuvo, FAM, and a learned edge-classification baseline on average conformal distortion on both benchmarks, and that feeding its seams to PartField's patch-voting procedure yields cleaner part boundaries, with a failure case shown when the seam does not follow a semantic boundary.
Load-bearing premise
The load-bearing premise is that UV-island boundaries extracted from the filtered 560K artist meshes are reliable expert seams rather than leftovers of automatic unwrappers, since the benchmark distortion numbers measure flattening quality and cannot detect whether the model's cuts are semantically coherent.
Editorial extensions
If this is right
- SeamGPT can be used as a drop-in pre-processing step before any standard UV unwrapper, replacing hand-placed seams with predicted artist-style cuts and lowering average conformal distortion below XAtlas on both manifold and non-manifold meshes.
- Controlling a single length embedding changes cutting granularity from a few large islands to many small patches, giving artists a dial that currently requires manual seam-editing tools.
- Because the model outputs seams as ordered line segments rather than per-face labels, the predictions can be snapped to mesh vertices and cut via geodesic paths, yielding clean boundaries that directly support 3D part segmentation when combined with a part-feature method such as PartField.
- The same autoregressive formulation can in principle be applied to any surface-cutting task beyond UV mapping, including digital fabrication and mesh decomposition, since it only requires a mesh and a seam ground truth.
Reading between the lines
- The reported distortion gains may partly come from having fewer, longer islands rather than from semantic alignment; a useful test would be to compare SeamGPT's seams against seams optimized purely for distortion, and measure semantic coherence separately (e.g., part segmentation accuracy) rather than flattening energy alone.
- Because training data is filtered by removing 'overlapping UVs' and 'arbitrarily placed seams', the model may silently inherit whatever unwrapping convention dominates the source datasets; one could test domain robustness by fine-tuning on a small set of hand-annotated seams and measuring how much distortion and boundary quality change.
- The same token-level formulation should transfer to curve outputs beyond straight line segments (e.g., splines), which the paper's limitation section hints at; if the decoder can emit control points instead of endpoint coordinates, the model could produce smoother and more compact seams.
- A practical extension would be to make SeamGPT interactive: instead of generating a full seam in one pass, let an artist click anchor points and have the model complete the cut, which would more directly mimic the professional workflow the paper claims to imitate.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes SeamGPT, an autoregressive transformer that generates cutting seams for 3D meshes by formulating surface cutting as next-token prediction over quantized 3D line-segment coordinates. The model is conditioned on point clouds sampled from mesh vertices and edges, trained on seam annotations extracted from UV-island boundaries of supposedly artist-created meshes, and evaluated on UV-unwrapping distortion (FAM and Toys4K benchmarks), a small user study, and a qualitative part-segmentation enhancement. The central claims are state-of-the-art UV-unwrapping performance with semantically meaningful, artist-style seams.
Significance. If the claims are substantiated, the paper offers a novel and potentially useful formulation: casting surface cutting as a sequence-generation problem, with a large-scale learned prior over seam placement. The idea of using autoregressive transformers for mesh cutting is original and could benefit UV unwrapping, texture editing, and part segmentation. However, the current evidence is insufficient to support the strong claims: the main quantitative comparisons are not apples-to-apples, the supervision assumption on 'artist seams' is unvalidated, and the semantic-coherence claim lacks any direct quantitative support. The paper's machine-checked aspects are limited; no code or trained model is released, and the ablations are mostly qualitative.
major comments (5)
- [Tables 1 and 2; Section 5] The comparison is not apples-to-apples. SeamGPT's predicted seams are flattened using Blender's Minimum Stretch algorithm, while XAtlas, Nuvo, and FAM are evaluated through their native pipelines. On 6 of the 13 FAM meshes (Ogre, Armadillo, Nefertiti, Dragon, Homer, Cow), XAtlas achieves lower average conformal distortion than SeamGPT, so the overall average gain is driven by a few large wins. The paper does not report the seam-length ratio R or chart counts for any baseline, so the distortion metric, which rewards fragmentation, is not controlled. Please evaluate all methods with identical flattening post-processing and report chart counts or seam budgets alongside distortion.
- [Section 5, Eq. (4); Section 6 (seam-length control)] The evaluation metric is average conformal energy, which can be arbitrarily lowered by adding more cuts; a mesh cut along every edge would have near-zero distortion. The paper introduces R (seam segment count over vertex count) as an empirical operating point for SeamGPT but does not control this quantity for baselines. Consequently, the lower average distortion in Tables 1 and 2 does not, by itself, demonstrate semantically meaningful or artist-style cuts. Please report additional metrics (e.g., number of charts, total seam length, alignment with semantic boundaries) and perform a controlled comparison where all methods are given a comparable seam budget.
- [Section 3 (Data Preparation)] The training supervision is not validated. The paper assumes that UV-island boundaries in the filtered Objaverse/Objaverse-XL/3D-FUTURE meshes are artist-created seams with semantic intent. The filtering is described in one sentence ('removed problematic UV unwrappings such as those with overlapping UVs or arbitrarily placed seams lacking semantic meaning'), with no analysis of how many meshes were removed or why the remaining seams are artist-defined rather than auto-generated by a UV unwrapper. If a large fraction of Objaverse UVs are produced by automatic tools, the model learns auto-unwrapper artifacts, and the benchmark distortion numbers do not reveal this. Please provide evidence of annotation quality (e.g., manual inspection statistics, inter-annotator agreement, or a comparison against a model trained on explicitly hand-authored seam annotations).
- [Section 7 and Figures 7, 9] The part-segmentation claim is supported only by qualitative examples, including an acknowledged failure case (Figure 9, last row). The text states that the approach 'significantly improves the accuracy of part decomposition,' but no quantitative segmentation metric (e.g., mIoU, boundary F-score, or part-consistent accuracy) is reported, and there is no comparison with other boundary-refinement methods. Please add quantitative evaluation on a standard part-segmentation benchmark and report performance with and without SeamGPT guidance.
- [Section 6 (Ablation Study)] The ablations are entirely qualitative. Figures 4 and 5 show visual comparisons for point-cloud vs. uniform sampling, point-cloud vs. mesh encoder, and pointer networks, but no quantitative distortion or seam-alignment numbers are given. The claim that edge/vertex sampling 'significantly improves model convergence' is not supported by any learning-curve or convergence data. Please provide quantitative ablation results, ideally with the same evaluation protocol as the main experiments.
minor comments (6)
- [Eq. (1)] The point-level expansion of the seam sequence contains a typo: the last two terms are both written as pNh_t; the second one should be pNs_t (or pNs_h, pNs_t).
- [Section 5 (Training Strategy) vs. Appendix A.2] The training hyperparameters are inconsistent: the main text states a 2,000-step warm-up, total batch size 128, and 64 Nvidia H20 GPUs, while Appendix A.2 states a batch size of 2 and a warm-up of one step. Please reconcile these numbers so the training setup is reproducible.
- [References and notation] PartField is cited as [23] in Section 7 but as [53] in Section 1; reference [53] is NerVE, not PartField. The name 'Xatalas' should be 'XAtlas'. Please correct these citation and spelling errors.
- [Tables 1 and 2] No error bars, standard deviations, or number of repeated runs are reported for any quantitative result. Given the small benchmark sizes (13 + 8 meshes) and the stochastic nature of autoregressive sampling, the claimed improvement over XAtlas on average distortion should be accompanied by variance estimates.
- [Section 5, User study] The user study (Table 3) involves only 20 participants and 3 test meshes, with no statistical significance testing reported. Please report confidence intervals or a significance test for the differences in Boundary quality and Editability.
- [Section 6] The phrase 'Does Pointer networks works?' should be corrected, and the caption of Figure 6 should be a complete sentence.
Circularity Check
No significant circularity: SeamGPT is an empirical supervised model with an external distortion metric; no prediction reduces to its training input by construction.
full rationale
The paper's central chain is: extract seams from UV island boundaries in filtered meshes, train an autoregressive transformer to predict quantized seam coordinates conditioned on a point cloud, then evaluate the resulting UV unwrapping with an external conformal distortion metric. No equation in the paper defines the predicted seams in terms of the reported distortion, and no fitted parameter is renamed as a prediction. The seam-length ratio R in [0.1, 0.35] is an operating-point choice, not a parameter fit to the benchmark metric. The point-cloud encoder from [40] and the hourglass decoder from [15] are reused components; citing them is standard architectural reuse and does not force the reported numbers. The claim that seams are 'artist-style' relies on the unverified assumption that UV island boundaries in the filtered data reflect artist intent, but that is a supervision-validity concern, not a circular derivation: the evaluation metric is independent of that assumption. The part-segmentation combination is a post-hoc vote over SeamGPT seams and PartField labels, and the paper even includes a failure case. Thus the derivation is self-contained against external benchmarks, and no circular step can be exhibited from the paper's own equations or citations.
Assumptions & free parameters
free parameters (4)
- quantization_bins =
1024 (10-bit)
- seam_length_ratio_R =
[0.1, 0.35]
- point_count =
61,440 (30,720 per vertices/edges)
- max_sequence_length =
27,000 tokens
assumptions (4)
- domain assumption UV-island boundaries in the filtered training meshes correspond to semantically meaningful artist seams.
- domain assumption Cutting seams can be adequately represented as sequences of straight line segments between quantized vertex positions in a fixed yzx order.
- domain assumption Point clouds sampled on vertices and edges, condensed by the pretrained encoder from [40], retain enough shape information for the decoder to predict valid seams.
- domain assumption The conformal energy metric (Eq. 4) is the right scalar for comparing UV unwrapping quality across methods.
Cite this review
Pith. "Pith review of Auto-Regressive Surface Cutting." pith.science (2026). https://pith.science/paper/LXQNYJM4
@misc{pith2026250618017,
author = {Pith},
title = {Pith review of: Auto-Regressive Surface Cutting},
year = {2026},
howpublished = {\url{https://pith.science/paper/LXQNYJM4}},
note = {Machine review of arXiv:2506.18017}
}
read the original abstract
Surface cutting is a fundamental task in computer graphics, with applications in UV parameterization, texture mapping, and mesh decomposition. However, existing methods often produce technically valid but overly fragmented atlases that lack semantic coherence. We introduce SeamGPT, an auto-regressive model that generates cutting seams by mimicking professional workflows. Our key technical innovation lies in formulating surface cutting as a next token prediction task: sample point clouds on mesh vertices and edges, encode them as shape conditions, and employ a GPT-style transformer to sequentially predict seam segments with quantized 3D coordinates. Our approach achieves exceptional performance on UV unwrapping benchmarks containing both manifold and non-manifold meshes, including artist-created, and 3D-scanned models. In addition, it enhances existing 3D segmentation tools by providing clean boundaries for part decomposition.
Figures
Figures from the paper (6 more)
Forward citations
Cited by 1 Pith paper
-
Hunyuan3D-Buffalo 1.0: A Unified Multimodal Model for Scalable 3D Generation, Understanding, and Editing
A unified 3D multimodal model combines understanding, text-to-3D generation, instruction-guided editing, and part generation in one architecture, trained on an 87M-sample corpus, with claimed state-of-the-art results.
Reference graph
Works this paper leans on
-
[1]
J. Achiam, S. Adler, S. Agarwal, L. Ahmad, I. Akkaya, F. L. Aleman, D. Almeida, J. Altenschmidt, S. Altman, S. Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774, 2023. 10 Figure 8: Seam prediction and UV unwrapping results. The left column displays the mesh with predicted seams overlaid, the middle column shows the predicted seam lin...
arXiv 2023
-
[2]
D. Bazazian, J. R. Casas, and J. Ruiz-Hidalgo. Fast and robust edge extraction in unorganized point clouds. In 2015 international conference on digital image computing: techniques and applications (DICTA), pages 1–8. IEEE, 2015
work page 2015
-
[3]
D. Bazazian and M. E. Parés. Edc-net: Edge detection capsule network for 3d point clouds. Applied Sciences, 11(4):1833, 2021
work page 2021
-
[4]
N. A. Carr, J. Hoberock, K. Crane, and J. C. Hart. Rectangular multi-chart geometry images. In Symposium on geometry processing, pages 181–190, 2006
work page 2006
-
[5]
J. I. Daniels, L. K. Ha, T. Ochotta, and C. T. Silva. Robust smooth feature extraction from point clouds. In IEEE International Conference on Shape Modeling and Applications 2007 (SMI’07) , pages 123–136. IEEE, 2007
work page 2007
-
[6]
M. Deitke, R. Liu, M. Wallingford, H. Ngo, O. Michel, A. Kusupati, A. Fan, C. Laforte, V . V oleti, S. Y . Gadre, E. VanderBilt, A. Kembhavi, C. V ondrick, G. Gkioxari, K. Ehsani, L. Schmidt, and A. Farhadi. Objaverse-xl: A universe of 10m+ 3d objects. arXiv preprint arXiv:2307.05663, 2023
arXiv 2023
- [7]
-
[8]
H. Fu, R. Jia, L. Gao, M. Gong, B. Zhao, S. Maybank, and D. Tao. 3d-future: 3d furniture shape with texture. International Journal of Computer Vision, pages 1–25, 2021
work page 2021
Show all 53 references
-
[9]
G. Gori, A. Sheffer, N. Vining, E. Rosales, N. Carr, and T. Ju. Flowrep: Descriptive curve networks for free-form design shapes. ACM Transactions on Graphics (TOG) , 36(4):1–14, 2017
2017
-
[10]
Groueix, M
T. Groueix, M. Fisher, V . G. Kim, B. C. Russell, and M. Aubry. A papier-mâché approach to learning 3d surface generation. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 216–224, 2018
2018
-
[11]
X. Gu, S. J. Gortler, and H. Hoppe. Geometry images. In Proceedings of the 29th annual conference on Computer graphics and interactive techniques , pages 355–361, 2002
2002
-
[12]
Gumhold, X
S. Gumhold, X. Wang, R. S. MacLeod, et al. Feature extraction from point clouds. In IMR, pages 293–305, 2001
2001
-
[13]
Hackel, J
T. Hackel, J. D. Wegner, and K. Schindler. Contour detection in unstructured 3d point clouds. In Proceedings of the IEEE conference on computer vision and pattern recognition , pages 1610–1618, 2016
2016
-
[14]
J. Han, J. Liu, Y . Jiang, B. Yan, Y . Zhang, Z. Yuan, B. Peng, and X. Liu. Infinity: Scaling bitwise autoregressive modeling for high-resolution image synthesis, 2024
2024
-
[15]
Z. Hao, D. W. Romero, T.-Y . Lin, and M.-Y . Liu. Meshtron: High-fidelity, artist-like 3d mesh generation at scale. arXiv preprint arXiv:2412.09548, 2024
2024 arXiv
-
[16]
Himeur, T
C.-E. Himeur, T. Lejemble, T. Pellegrini, M. Paulin, L. Barthe, and N. Mellado. Pcednet: A lightweight neural network for fast and interactive edge detection in 3d point clouds. ACM Transactions on Graphics (TOG), 41(1):1–21, 2021
2021
-
[17]
Kharevych, B
L. Kharevych, B. Springborn, and P. Schröder. Discrete conformal mappings via circle patterns. ACM Transactions on Graphics (TOG), 25(2):412–438, 2006
2006
-
[18]
Kirillov, E
A. Kirillov, E. Mintun, N. Ravi, H. Mao, C. Rolland, L. Gustafson, T. Xiao, S. Whitehead, A. C. Berg, W.-Y . Lo, et al. Segment anything. InProceedings of the IEEE/CVF international conference on computer vision, pages 4015–4026, 2023
2023
-
[19]
B. Lévy, S. Petitjean, N. Ray, and J. Maillot. Least squares conformal maps for automatic texture atlas generation. In Seminal Graphics Papers: Pushing the Boundaries, V olume 2, pages 193–202. Arxiv, 2023. 13
2023
-
[20]
M. Li, D. M. Kaufman, V . G. Kim, J. Solomon, and A. Sheffer. Optcuts: Joint optimization of surface cuts and parameterization. ACM transactions on graphics (TOG), 37(6):1–13, 2018
2018
-
[21]
Y . Lin, C. Wang, J. Cheng, B. Chen, F. Jia, Z. Chen, and J. Li. Line segment extraction for large scale unorganized point clouds. ISPRS Journal of Photogrammetry and Remote Sensing , 102:172–183, 2015
2015
-
[22]
A. Liu, C. Lin, Y . Liu, X. Long, Z. Dou, H.-X. Guo, P. Luo, and W. Wang. Part123: part-aware 3d reconstruction from a single-view image. In ACM SIGGRAPH 2024 Conference Papers , pages 1–12, 2024
2024
-
[23]
M. Liu, M. A. Uy, D. Xiang, H. Su, S. Fidler, N. Sharp, and J. Gao. Partfield: Learning 3d feature fields for part segmentation and beyond, 2025
2025
-
[24]
Lucquin, S
V . Lucquin, S. Deguy, and T. Boubekeur. Seamcut: Interactive mesh segmentation for parame- terization. In ACM SIGGRAPH 2017 Technical Briefs, 2017
2017
-
[25]
X. Ma, Y . Liu, T. Gao, Q. Huang, and H. Huang. Clr-wire: Towards continuous latent representations for 3d curve wireframe generation. arXiv preprint arXiv:2504.19174, 2025
2025 arXiv
-
[26]
Mitani and H
J. Mitani and H. Suzuki. Making papercraft toys from meshes using strip-based approximate unfolding. ACM transactions on graphics (TOG), 23(3):259–263, 2004
2004
-
[27]
C. Nash, Y . Ganin, S. A. Eslami, and P. Battaglia. Polygen: An autoregressive generative model of 3d meshes. In International conference on machine learning , pages 7220–7229. PMLR, 2020
2020
-
[28]
K. Park, U. Sinha, J. T. Barron, S. Bouaziz, D. B. Goldman, S. M. Seitz, and R. Martin-Brualla. Nerfies: Deformable neural radiance fields. ICCV, 2021
2021
-
[29]
C. R. Qi, H. Su, K. Mo, and L. 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, 2017
2017
-
[30]
P. V . Sander, Z. J. Wood, S. Gortler, J. Snyder, and H. Hoppe. Multi-chart geometry images. arxiv, 2003
2003
-
[31]
Sharp and K
N. Sharp and K. Crane. Variational surface cutting. ACM Trans. Graph., 37(4), 2018
2018
-
[32]
Sheffer and J
A. Sheffer and J. C. Hart. Seamster: inconspicuous low-distortion texture seam layout. In IEEE Visualization, 2002. VIS 2002., pages 291–298. IEEE, 2002
2002
-
[33]
Siddiqui, A
Y . Siddiqui, A. Alliegro, A. Artemov, T. Tommasi, D. Sirigatti, V . Rosov, A. Dai, and M. Nießner. Meshgpt: Generating triangle meshes with decoder-only transformers. arXiv preprint arXiv:2311.15475, 2023
2023 arXiv
-
[34]
Soliman, D
Y . Soliman, D. Slepˇcev, and K. Crane. Optimal cone singularities for conformal flattening. ACM Transactions on Graphics (TOG), 37(4):1–17, 2018
2018
-
[35]
Sorkine, D
O. Sorkine, D. Cohen-Or, R. Goldenthal, and D. Lischinski. Bounded-distortion piecewise mesh parameterization. In IEEE Visualization, 2002. VIS 2002. , pages 355–362. IEEE, 2002
2002
-
[36]
Springborn, P
B. Springborn, P. Schröder, and U. Pinkall. Conformal equivalence of triangle meshes. In ACM SIGGRAPH 2008 papers, pages 1–11. arxiv, 2008
2008
-
[37]
P. P. Srinivasan, S. J. Garbin, D. Verbin, J. T. Barron, and B. Mildenhall. Nuvo: Neural uv mapping for unruly 3d representations. In European Conference on Computer Vision, pages 18–34. Springer, 2024
2024
-
[38]
Stojanov, A
S. Stojanov, A. Thai, and J. M. Rehg. Using shape to categorize: Low-shot learning with an explicit shape bias. CVPR, 2021
2021
-
[39]
C. Tang, P. Bo, J. Wallner, and H. Pottmann. Interactive design of developable surfaces.ACM Transactions on Graphics (TOG), 35(2):1–12, 2016. 14
2016
-
[40]
T. H. Team. Hunyuan3d 2.0: Scaling diffusion models for high resolution textured 3d assets generation, 2025
2025
-
[41]
Vinyals, M
O. Vinyals, M. Fortunato, and N. Jaitly. Pointer networks. Advances in neural information processing systems, 28, 2015
2015
-
[42]
X. Wang, Y . Xu, K. Xu, A. Tagliasacchi, B. Zhou, A. Mahdavi-Amiri, and H. Zhang. Pie-net: Parametric inference of point cloud edges. Advances in neural information processing systems , 33:20167–20178, 2020
2020
-
[43]
Y . Wang, Y . Sun, Z. Liu, S. E. Sarma, M. M. Bronstein, and J. M. Solomon. Dynamic graph cnn for learning on point clouds. ACM Transactions on Graphics (tog), 38(5):1–12, 2019
2019
-
[44]
H. Weng, Z. Zhao, B. Lei, X. Yang, J. Liu, Z. Lai, Z. Chen, Y . Liu, J. Jiang, C. Guo, T. Zhang, S. Gao, and C. L. P. Chen. Scaling mesh generation via compressive tokenization. arXiv preprint arXiv:2411.07025, 2024
2024 arXiv
-
[45]
Yamauchi, S
H. Yamauchi, S. Gumhold, R. Zayer, and H.-P. Seidel. Mesh segmentation driven by gaussian curvature. The Visual Computer, 21:659–668, 2005
2005
-
[46]
Yang, Y .-C
Y . Yang, Y .-C. Guo, Y . Huang, Z.-X. Zou, Z. Yu, Y . Li, Y .-P. Cao, and X. Liu. Holopart: Generative 3d part amodal segmentation. arXiv preprint arXiv:2504.07943, 2025
2025 arXiv
-
[47]
Y . Yang, Y . Huang, Y .-C. Guo, L. Lu, X. Wu, E. Y . Lam, Y .-P. Cao, and X. Liu. Sampart3d: Segment any part in 3d objects. arXiv preprint arXiv:2411.07184, 2024
2024 arXiv
-
[48]
J. Young. xatlas - mesh parameterization / uv unwrapping library, 2024
2024
-
[49]
L. Yu, X. Li, C.-W. Fu, D. Cohen-Or, and P.-A. Heng. Ec-net: an edge-aware point set consolidation network. In Proceedings of the European conference on computer vision (ECCV) , pages 386–402, 2018
2018
-
[50]
Zhang, J
Q. Zhang, J. Hou, W. Wang, and Y . He. Flatten anything: Unsupervised neural surface parameterization. arXiv preprint arXiv:2405.14633, 2024
2024 arXiv
-
[51]
K. Zhou, J. Synder, B. Guo, and H.-Y . Shum. Iso-charts: stretch-driven mesh parameterization using spectral analysis. In Proceedings of the 2004 Eurographics/ACM SIGGRAPH symposium on Geometry processing, pages 45–54, 2004
2004
-
[52]
Y . Zhou, C. Wu, Z. Li, C. Cao, Y . Ye, J. Saragih, H. Li, and Y . Sheikh. Fully convolutional mesh autoencoder using efficient spatially varying kernels. Advances in neural information processing systems, 33:9251–9262, 2020
2020
-
[53]
X. Zhu, D. Du, W. Chen, Z. Zhao, Y . Nie, and X. Han. Nerve: Neural volumetric edges for parametric curve extraction from point cloud. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 13601–13610, 2023. 15
2023
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.