REVIEW 2 major objections 6 minor 46 references
CrossSDF: 3D Reconstruction of Thin Structures From Cross-Sections
T0 review · 2 major / 6 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read CrossSDF reconstructs thin 3D structures from planar cross-sections by training a neural signed distance field with a symmetric-difference loss, avoiding the interpolation artifacts and over-smoothing of prior methods.
desk verdict CrossSDF is a genuinely novel and well-engineered method, but its own connected-component numbers contradict the 'no breakages' headline and need to be addressed before publication. 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 object is the symmetric-difference loss. Given planar samples with known 2D distance values, define $\Omega_{on} = \{x : f_{2D}(x) = 0\}$ and $\Omega_{off} = \{x : f_{2D}(x) \neq 0 \text{ and } \operatorname{sign}(f(x;\theta)) \neq \operatorname{sign}(f_{2D}(x))\}$. The loss is $\mathcal{L}_{on} = \mathbb{E}_{x\in\Omega_{on}} |f(x;\theta) - f_{2D}(x)|$ plus $\mathcal{L}_{off} = \mathbb{E}_{x\in\Omega_{off}} (f(x;\theta) - f_{2D}(x))^2$, so the network receives distance supervision only on the contour and where the predicted and target interiors disagree. This region shrinks to zero as the predicted surface aligns with the target contour, freeing the field to be a true 3D SDF between planes. Two auxiliary mechanisms carry much of the practical performance: the hybrid encoding $z = M_{hash}(\gamma_{hash}(x)) + \alpha M_{RF}(\gamma_{RF}(x))$, concatenated with $x$, which adds Fourier-feature smoothness to hash-grid detail; and adaptive sampling that keeps sampling inside every contour until a threshold, so small cross-sectional areas are not ignored.
What would settle it
Slice a ground-truth thin branching mesh into 25 parallel planes, run CrossSDF, and check the result in two ways: count the connected components of the extracted zero set against the mesh, and measure the angle between the learned field's gradient at points midway between planes and the slice-plane normal. If thin branches fragment into multiple components or the gradients align with the slicing direction, the symmetric-difference and Eikonal supervision has not produced a genuine 3D signed distance field.
Extended reading notes
Core claim
CrossSDF learns a neural signed distance function $f(x;\theta)$ whose zero set is the reconstructed surface. The training signal comes from planar signed distance fields $f_{2D}$ computed on each input slice. On-contour samples $\Omega_{on}$ regress $f$ to the 2D distance value, while off-contour samples $\Omega_{off}$ enter the loss only when the sign of $f$ and $f_{2D}$ disagree, so supervision is applied exactly where the predicted interior/exterior differs from the target. This symmetric-difference scheme forces the zero set to match the input contours without forcing $f$ to be a 2D distance field inside the plane, which is what the paper identifies as the cause of laddering. Eikonal and minimum-surface regularization in 3D keep $f$ a valid signed distance field and suppress spurious surfaces, while per-contour adaptive sampling and a hybrid hash-plus-random-Fourier encoding preserve thin features and remove grid creases. On synthetic thin and thick datasets the paper reports lower Chamfer and Hausdorff distances than OReX, Neural-IMLS, POCO, and Screened Poisson, and higher held-out-slice IoU on real CT vessel scans.
Load-bearing premise
The load-bearing premise is that Eikonal regularization on uniformly sampled 3D points, together with the network's inductive bias, is enough to define a correct, artifact-free signed distance field in the large unsampled regions between cross-section planes, where there is no direct distance supervision.
Editorial extensions
If this is right
- Reconstructions from sparse arbitrary-orientation slices can be meshed directly with marching cubes, with no slice-interpolation step and no smoothing post-process.
- Thin branching topology, such as vessel trees spanning only a few CT slices, is preserved better than with indicator-field or point-cloud methods.
- Halving the number of slices (for example, from 75 to 50) degrades quality only mildly, and even 25 slices remain usable for some structures, so acquisition could be sparser.
- Each component contributes a specific property: the symmetric-difference loss removes staircase and laddering artifacts, the adaptive sampler rescues thin contours, and the hybrid encoding removes grid creases while retaining detail.
Reading between the lines
- The symmetric-difference principle could generalize to any sparse supervision that provides inside/outside labels, such as sparse LiDAR returns or partial segmentations, without fitting a proxy function in unsampled regions.
- The hash-plus-Fourier blend could reduce grid-boundary creases in other hash-based neural fields trained from sparse observations, such as multi-view reconstruction with few views.
- A natural extension would replace the fixed per-contour sample threshold with an analytic criterion based on contour area or local feature size, which could further improve extreme thin structures.
- If the held-out CT results hold in practice, standard 5 mm-slice scans could be reconstructed into vessel trees usable for pre-surgical planning without dense follow-up imaging.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces CrossSDF, a neural signed distance field (SDF) method for reconstructing 3D geometry from planar cross-sections. The input is a set of 2D contours, from which 2D SDFs are derived. The method combines per-contour adaptive sampling, a hybrid hash-grid and random Fourier feature encoding, and a symmetric difference loss that supervises the network only where the predicted and target interior/exterior classifications disagree, together with Eikonal and minimum-surface regularization. The authors evaluate on synthetic thin and thick structures and on real CT scans, comparing against OReX, Neural-IMLS, POCO, and Screened Poisson Reconstruction, reporting Chamfer distance, Hausdorff distance, connected-component count, and volume IoU. The claimed contributions are high-fidelity reconstruction of thin structures, preservation of topological continuity, and avoidance of interpolation artifacts.
Significance. The method is clearly specified and each component is motivated by a specific artifact (laddering, grid interpolation, under-sampled thin contours). The ablations in Table 4 and Figure 8 show that each proposed component contributes to the quantitative and qualitative results. The problem setting, reconstruction from arbitrary planar cross-sections, is practically important, particularly for medical imaging of vessels. If the claims hold, CrossSDF would be a valuable advance over the current state of the art. The introduction of a benchmark for thin-structure cross-section reconstruction is potentially useful, although no code or dataset is released in the manuscript. The main weakness is that the paper's central claim of preserving topological continuity is directly contradicted by the connected-component counts reported in Table 1, and the evaluation lacks statistical rigor (no error bars, self-defined benchmark).
major comments (2)
- [Table 1 and Section 4.1] The paper claims in the Abstract and Section 4.1 that CrossSDF preserves topological continuity and reconstructs thin structures 'without breakages.' However, the connected-component (CC) counts in Table 1 show that CrossSDF's extracted meshes are far more fragmented than the ground truth: e.g., Heart aligned 68 vs. 1, Heart non-aligned 176 vs. 1, Alveolis non-aligned 33 vs. 1, and Coronaries non-aligned 35 vs. 3. Since the paper itself introduces CC as a metric that 'confirms correct segmentation and topological consistency,' these numbers directly undercut the central claim. The authors do not discuss this discrepancy or attribute it to marching-cubes threshold sensitivity, spurious tiny components, or mesh post-processing. This issue must be addressed by either analyzing the components (e.g., size filtering, main-component connectivity, or alternative topology metrics) or substantially qualifying the topological-continuity claim.
- [Tables 1, 2, 3, 4, 5, A1, A2] All quantitative results are reported as single numbers without error bars, multiple seeds, or any variance analysis. Training is stochastic (random initialization, sampling, and optimization), and the evaluation is performed on a self-defined benchmark. Consequently, the assertion of 'significant improvement over existing methods' is not statistically supported. The authors should report mean and standard deviation over at least three runs, or otherwise justify why the variance is negligible.
minor comments (6)
- [Table 1] The column header 'Coro (75)' is ambiguous; it likely denotes a separate coronary structure but is not named in the text. Please clarify the naming.
- [Section 3.2] The inset figure illustrating the adaptive sampling issue is not numbered or referenced clearly; it would help to include it as a formal figure or explicitly describe the depicted situation in the text.
- [Section 3.4, Eq. (4)] The definition of Ωon as the set where f2D(x) = 0 is technically measure-zero for continuous functions; in practice on-contour samples are used. The text should state that these are the discretized on-contour samples.
- [Appendix B.2] The description of withholding '≈ 10% of the slices' is inconsistent with the example: keeping every 61//10 = 6th slice removes about 17% of the data. Please correct the explanation of the split procedure.
- [References] The definitions of Chamfer distance and Hausdorff distance are attributed to [30] (UniSurf), which is not the standard source; consider citing a more appropriate reference for these metrics.
- [Overall] The paper does not mention whether code and the new benchmark dataset will be released; for reproducibility, please state availability or provide a link.
Circularity Check
No circularity: CrossSDF is a supervised fitting procedure evaluated against external ground truth; self-citations are baselines or regularizers and are not load-bearing.
full rationale
We walked the derivation chain: 2D SDF labels are precomputed from input contours, and the network is trained with the symmetric-difference loss (Eq. 5), where Omega_off is the symmetric difference between predicted and target interior/exterior classifications (Eq. 4). This is a standard supervised objective: the target classification is the input segmentation, not a function of the fitted output, and the loss shrinks to zero exactly when predicted and target contours coincide. The adaptive sampling and hybrid encoding (Eqs. 1-3) are architectural and sampling choices that do not encode the evaluation target. The spatial regularizers (Eqs. 6-7) are priors, not fitted predictions. Quantitative claims are checked against external ground-truth meshes for synthetic data and held-out CT slices for real data (Table 3), so the reported predictions are not the fitted labels by construction. The self-citations to OReX [33] and Deep Medial Fields [32] involve co-authors, but OReX is used as a baseline and sampling starting point, and the medial-field regularizer is one loss term with an ablation showing its effect; neither citation supplies the central reconstruction claim nor forbids alternatives. The paper's own Limitations paragraph concedes failure on very sparse slices, and Table 1's connected-component counts for CrossSDF (e.g., 68/176 vs ground truth 1 for Heart) undercut the topological-continuity claim; these are correctness and robustness concerns, not circularity. No equation or step reduces to its input by definition, so no circular step is identified.
Assumptions & free parameters
free parameters (7)
- Eikonal loss weight λeik =
1e-3
- Minimum surface loss weight λmin =
5e-2
- RFF scaling α =
0.1
- Contour sampling threshold =
50
- Softplus and min-surface β =
100
- Hash-grid max resolution =
2^10
- RFF Gaussian variance σ^2 =
1.0
assumptions (5)
- domain assumption Input contours are closed and partition each cross-section plane into inside and outside regions.
- domain assumption Ground-truth interior/exterior segmentation is available on each slicing plane.
- standard math The Eikonal equation is used as a soft regularizer to enforce a signed distance property on the learned field.
- domain assumption The neural network with hash-grid and Fourier features has sufficient capacity to represent thin structures while remaining smooth between slices.
- standard math Marching cubes at 512^3 resolution faithfully extracts the zero set as a triangle mesh.
Cite this review
Pith. "Pith review of CrossSDF: 3D Reconstruction of Thin Structures From Cross-Sections." pith.science (2026). https://pith.science/paper/5JQ2L3G2
@misc{pith2026241204120,
author = {Pith},
title = {Pith review of: CrossSDF: 3D Reconstruction of Thin Structures From Cross-Sections},
year = {2026},
howpublished = {\url{https://pith.science/paper/5JQ2L3G2}},
note = {Machine review of arXiv:2412.04120}
}
read the original abstract
Reconstructing complex structures from planar cross-sections is a challenging problem, with wide-reaching applications in medical imaging, manufacturing, and topography. Out-of-the-box point cloud reconstruction methods can often fail due to the data sparsity between slicing planes, while current bespoke methods struggle to reconstruct thin geometric structures and preserve topological continuity. This is important for medical applications where thin vessel structures are present in CT and MRI scans. This paper introduces CrossSDF, a novel approach for extracting a 3D signed distance field from 2D signed distances generated from planar contours. Our approach makes the training of neural SDFs contour-aware by using losses designed for the case where geometry is known within 2D slices. Our results demonstrate a significant improvement over existing methods, effectively reconstructing thin structures and producing accurate 3D models without the interpolation artifacts or over-smoothing of prior approaches.
Figures
Figures from the paper (6 more)
Reference graph
Works this paper leans on
-
[1]
Exploring ct pixel and voxel size effect on anatomic model- ing in mandibular reconstruction
Maariyah Ahmed, Myra Garzanich, Luigi E Melaragno, Sarah Nyirjesy, Natalia V on Windheim, Matthew Marquardt, Michael Luttrull, Nathan Quails, and Kyle K VanKoevering. Exploring ct pixel and voxel size effect on anatomic model- ing in mandibular reconstruction. 3D Printing in Medicine ,
-
[2]
3d reconstruction of blood vessels
Ali Al Moussawi, Cedric Galusinski, and Christian Nguyen. 3d reconstruction of blood vessels. Engineering with com- puters, 2015. 1
work page 2015
-
[3]
Discrete geometric shapes: Matching, interpolation, and approximation
Helmut Alt and Leonidas J Guibas. Discrete geometric shapes: Matching, interpolation, and approximation. In Handbook of computational geometry - Chapter 3. 2000. 5
work page 2000
-
[4]
The medical segmentation decathlon.Nature communications, 2022
Michela Antonelli, Annika Reinke, Spyridon Bakas, Key- van Farahani, Annette Kopp-Schneider, Bennett A Landman, Geert Litjens, Bjoern Menze, Olaf Ronneberger, Ronald M Summers, et al. The medical segmentation decathlon.Nature communications, 2022. 5, 1
work page 2022
-
[5]
Sal: Sign agnostic learn- ing of shapes from raw data
Matan Atzmon and Yaron Lipman. Sal: Sign agnostic learn- ing of shapes from raw data. In CVPR, 2020. 2
work page 2020
-
[6]
Ar- bitrary topology shape reconstruction from planar cross sec- tions
Chandrajit L Bajaj, Edward J Coyle, and Kwun-Nan Lin. Ar- bitrary topology shape reconstruction from planar cross sec- tions. Graphical models and image processing, 1996. 1, 2
work page 1996
-
[7]
Piecewise-linear interpo- lation between polygonal slices
Gill Barequet and Micha Sharir. Piecewise-linear interpo- lation between polygonal slices. In Annual symposium on Computational geometry, 1994. 1, 2
work page 1994
-
[8]
Reconstruction of multi- label domains from partial planar cross-sections
Gill Barequet and Amir Vaxman. Reconstruction of multi- label domains from partial planar cross-sections. Computer Graphics Forum, 2009. 2
work page 2009
Show all 46 references
-
[9]
Online reconstruction of 3d objects from arbitrary cross-sections
Amit Bermano, Amir Vaxman, and Craig Gotsman. Online reconstruction of 3d objects from arbitrary cross-sections. ACM Transactions on Graphics, 2011. 1, 2, 3, 4
2011
-
[10]
Shape recon- struction from unorganized cross-sections
Jean-Daniel Boissonnat and Pooran Memari. Shape recon- struction from unorganized cross-sections. In Symposium on geometry processing, 2007. 1, 2
2007
-
[11]
Poco: Point convo- lution for surface reconstruction
Alexandre Boulch and Renaud Marlet. Poco: Point convo- lution for surface reconstruction. In CVPR, 2022. 2, 5, 6, 7
2022
-
[12]
Use of computed tomography slices 3d-reconstruction as a powerful tool to improve manu- facturing processes on aeroengine components
C Castellan and D Dastarac. Use of computed tomography slices 3d-reconstruction as a powerful tool to improve manu- facturing processes on aeroengine components. In AIP Con- ference Proceedings. American Institute of Physics, 2000. 1
2000
-
[13]
Learning implicit fields for generative shape modeling
Zhiqin Chen and Hao Zhang. Learning implicit fields for generative shape modeling. In CVPR, 2019. 2
2019
-
[14]
Points2surf learning implicit surfaces from point clouds
Philipp Erler, Paul Guerrero, Stefan Ohrhallinger, Niloy J Mitra, and Michael Wimmer. Points2surf learning implicit surfaces from point clouds. In ECCV, 2020. 2
2020
-
[15]
Nerf: Neural radiance field in 3d vision, a comprehensive review
Kyle Gao, Yina Gao, Hongjie He, Dening Lu, Linlin Xu, and Jonathan Li. Nerf: Neural radiance field in 3d vision, a comprehensive review. arXiv:2210.00379, 2022. 4
2022 arXiv
-
[16]
Three-dimensional modeling of human or- gans and its application to diagnosis and surgical planning
Bernhard Geiger. Three-dimensional modeling of human or- gans and its application to diagnosis and surgical planning. PhD thesis, INRIA, 1993. 1
1993
-
[17]
Implicit geometric regularization for learning shapes
Amos Gropp, Lior Yariv, Niv Haim, Matan Atzmon, and Yaron Lipman. Implicit geometric regularization for learning shapes. In ICML, 2020. 2, 3
2020
-
[18]
3d-imaging of cardiac structures using 3d heart models for planning in heart surgery: a preliminary study
Stephan Jacobs, Ronny Grunert, Friedrich W Mohr, and V olkmar Falk. 3d-imaging of cardiac structures using 3d heart models for planning in heart surgery: a preliminary study. Interactive cardiovascular and thoracic surgery ,
-
[19]
Screened poisson sur- face reconstruction
Michael Kazhdan and Hugues Hoppe. Screened poisson sur- face reconstruction. ACM Transactions on Graphics, 2013. 2, 5, 6, 7, 1
2013
-
[20]
Poisson surface reconstruction
Michael Kazhdan, Matthew Bolitho, and Hugues Hoppe. Poisson surface reconstruction. In Eurographics Symposium on Geometry processing, 2006. 2
2006
-
[21]
Abc: A big cad model dataset for geometric deep learning
Sebastian Koch, Albert Matveev, Zhongshi Jiang, Francis Williams, Alexey Artemov, Evgeny Burnaev, Marc Alexa, Denis Zorin, and Daniele Panozzo. Abc: A big cad model dataset for geometric deep learning. In CVPR, 2019. 2
2019
-
[22]
Neuralangelo: High-fidelity neural surface reconstruction
Zhaoshuo Li, Thomas M ¨uller, Alex Evans, Russell H Tay- lor, Mathias Unberath, Ming-Yu Liu, and Chen-Hsuan Lin. Neuralangelo: High-fidelity neural surface reconstruction. In CVPR, 2023. 2, 3, 4
2023
-
[23]
Surface reconstruction from non-parallel curve networks
Lu Liu, Chandrajit Bajaj, Joseph O Deasy, Daniel A Low, and Tao Ju. Surface reconstruction from non-parallel curve networks. In Computer Graphics Forum, 2008. 1
2008
-
[24]
Neural sparse voxel fields
Lingjie Liu, Jiatao Gu, Kyaw Zaw Lin, Tat-Seng Chua, and Christian Theobalt. Neural sparse voxel fields. NeurIPS,
-
[25]
Neural-pull: Learning signed distance functions from point clouds by learning to pull space onto surfaces
Baorui Ma, Zhizhong Han, Yu-Shen Liu, and Matthias Zwicker. Neural-pull: Learning signed distance functions from point clouds by learning to pull space onto surfaces. In ICML, 2021. 2
2021
-
[26]
Towards better gradient consistency for neural signed distance functions via level set alignment
Baorui Ma, Junsheng Zhou, Yu-Shen Liu, and Zhizhong Han. Towards better gradient consistency for neural signed distance functions via level set alignment. In CVPR, 2023. 2
2023
-
[27]
Occupancy networks: Learning 3d reconstruction in function space
Lars Mescheder, Michael Oechsle, Michael Niemeyer, Se- bastian Nowozin, and Andreas Geiger. Occupancy networks: Learning 3d reconstruction in function space. In CVPR,
-
[28]
tiny-cuda-nn, 2021
Thomas M ¨uller. tiny-cuda-nn, 2021. 1
2021
-
[29]
Instant neural graphics primitives with a mul- tiresolution hash encoding
Thomas M ¨uller, Alex Evans, Christoph Schied, and Alexan- der Keller. Instant neural graphics primitives with a mul- tiresolution hash encoding. ACM Transactions on Graphics,
-
[30]
Unisurf: Unifying neural implicit surfaces and radiance fields for multi-view reconstruction
Michael Oechsle, Songyou Peng, and Andreas Geiger. Unisurf: Unifying neural implicit surfaces and radiance fields for multi-view reconstruction. In ICCV, 2021. 6
2021
-
[31]
Deepsdf: Learning con- tinuous signed distance functions for shape representation
Jeong Joon Park, Philip Florence, Julian Straub, Richard Newcombe, and Steven Lovegrove. Deepsdf: Learning con- tinuous signed distance functions for shape representation. In CVPR, 2019. 2
2019
-
[32]
Deep medial fields
Daniel Rebain, Ke Li, Vincent Sitzmann, Soroosh Yazdani, Kwang Moo Yi, and Andrea Tagliasacchi. Deep medial fields. arXiv:2106.03804, 2021. 5
2021 arXiv
-
[33]
Orex: Object reconstruction from planar cross-sections us- ing neural fields
Haim Sawdayee, Amir Vaxman, and Amit H Bermano. Orex: Object reconstruction from planar cross-sections us- ing neural fields. In CVPR, 2023. 1, 2, 3, 5, 6, 7, 8
2023
-
[34]
Topology-Controlled Re- construction from Partial Cross-Sections
Amani Shhadi and Gill Barequet. Topology-Controlled Re- construction from Partial Cross-Sections. In Vision, Model- ing, and Visualization, 2023. 2
2023
-
[35]
Implicit neural representa- tions with periodic activation functions
Vincent Sitzmann, Julien Martel, Alexander Bergman, David Lindell, and Gordon Wetzstein. Implicit neural representa- tions with periodic activation functions. NeurIPS, 2020. 2
2020
-
[36]
3d image reconstruc- tion for comparison of algorithm database: A patient specific anatomical and medical image database
Luc Soler, Alexandre Hostettler, Vincent Agnus, Arnaud Charnoz, J Fasquel, Johan Moreau, A Osswald, Mourad Bouhadjar, and Jacques Marescaux. 3d image reconstruc- tion for comparison of algorithm database: A patient specific anatomical and medical image database. IRCAD Tech. Rep.,
-
[37]
Neural geometric level of detail: Real-time rendering with implicit 3D shapes
Towaki Takikawa, Joey Litalien, Kangxue Yin, Karsten Kreis, Charles Loop, Derek Nowrouzezahrai, Alec Jacobson, Morgan McGuire, and Sanja Fidler. Neural geometric level of detail: Real-time rendering with implicit 3D shapes. In CVPR, 2021. 4
2021
-
[38]
Fourier features let networks learn high frequency functions in low dimen- sional domains
Matthew Tancik, Pratul Srinivasan, Ben Mildenhall, Sara Fridovich-Keil, Nithin Raghavan, Utkarsh Singhal, Ravi Ra- mamoorthi, Jonathan Barron, and Ren Ng. Fourier features let networks learn high frequency functions in low dimen- sional domains. NeurIPS, 2020. 4
2020
-
[39]
Neus: Learning neural implicit surfaces by volume rendering for multi-view reconstruction
Peng Wang, Lingjie Liu, Yuan Liu, Christian Theobalt, Taku Komura, and Wenping Wang. Neus: Learning neural implicit surfaces by volume rendering for multi-view reconstruction. In NeurIPS, 2021. 2
2021
-
[40]
Neural-imls: Self-supervised im- plicit moving least-squares network for surface reconstruc- tion
Zixiong Wang, Pengfei Wang, Peng-Shuai Wang, Qiujie Dong, Junjie Gao, Shuangmin Chen, Shiqing Xin, Changhe Tu, and Wenping Wang. Neural-imls: Self-supervised im- plicit moving least-squares network for surface reconstruc- tion. Transactions on Visualization and Computer Graphics,
-
[41]
The vascular model repository: a public resource of medi- cal imaging data and blood flow simulation results
Nathan M Wilson, Ana K Ortiz, and Allison B Johnson. The vascular model repository: a public resource of medi- cal imaging data and blood flow simulation results. Journal of medical devices, 2013. 5
2013
-
[42]
Neural fields in visual computing and beyond
Yiheng Xie, Towaki Takikawa, Shunsuke Saito, Or Litany, Shiqin Yan, Numair Khan, Federico Tombari, James Tomp- kin, Vincent Sitzmann, and Srinath Sridhar. Neural fields in visual computing and beyond. InComputer Graphics Forum,
-
[43]
Multiview neu- ral surface reconstruction by disentangling geometry and ap- pearance
Lior Yariv, Yoni Kasten, Dror Moran, Meirav Galun, Matan Atzmon, Basri Ronen, and Yaron Lipman. Multiview neu- ral surface reconstruction by disentangling geometry and ap- pearance. In NeurIPS, 2020. 1
2020
-
[44]
Mosaic-sdf for 3d generative models
Lior Yariv, Omri Puny, Oran Gafni, and Yaron Lipman. Mosaic-sdf for 3d generative models. In CVPR, 2024. 2
2024
-
[45]
Iso-points: Optimizing neural implicit surfaces with hybrid representations
Wang Yifan, Shihao Wu, Cengiz Oztireli, and Olga Sorkine- Hornung. Iso-points: Optimizing neural implicit surfaces with hybrid representations. In CVPR, 2021. 2
2021
-
[46]
No 2D SDF Labels
Ming Zou, Michelle Holloway, Nathan Carr, and Tao Ju. Topology-constrained surface reconstruction from cross- sections. ACM Transactions on Graphics, 2015. 1, 2 CrossSDF: 3D Reconstruction of Thin Structures From Cross-Sections Supplementary Material A. Additional Results A.1....
2015
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.