Update README.md
Browse files
README.md
CHANGED
|
@@ -3,46 +3,46 @@ license: mit
|
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
tags:
|
| 6 |
-
-
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
-
-
|
| 10 |
-
-
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
-
# S2V-Net
|
| 14 |
|
| 15 |
-
|
| 16 |
|
| 17 |
-
|
| 18 |
-

|
| 19 |
-

|
| 20 |
|
| 21 |
-
|
|
|
|
|
|
|
| 22 |
|
| 23 |
-
|
| 24 |
-
* **No Normals Required:** Unlike many existing methods, it processes completely unoriented, raw 3D strokes. Users don't need to worry about stroke directions.
|
| 25 |
-
* **Robust & Accurate:** Accurately fills large spatial gaps between sparse strokes while preserving high-frequency geometric details.
|
| 26 |
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
-
|
| 30 |
-
1. **Backbone (Global Shape):** A custom **SwinUNETR v2** transformer infers the global topology and bridges large gaps between sparse input strokes.
|
| 31 |
-
2. **Refinement (Local Details):** A lightweight 3D CNN acts as a geometric denoiser to sharpen boundaries and recover fine details.
|
| 32 |
-
3. **Meshing:** The predicted occupancy grid is extracted via Marching Cubes and smoothed using a locally controllable Laplacian filter.
|
| 33 |
|
| 34 |
-
|
| 35 |
-
|
| 36 |
|
| 37 |
## Citation
|
| 38 |
|
| 39 |
-
If you use
|
| 40 |
|
| 41 |
```bibtex
|
| 42 |
-
@
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
year
|
| 47 |
-
|
| 48 |
-
|
|
|
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
tags:
|
| 6 |
+
- 3d
|
| 7 |
+
- 3d-reconstruction
|
| 8 |
+
- sketch-based-modeling
|
| 9 |
+
- surface-reconstruction
|
| 10 |
+
- pytorch
|
| 11 |
+
- siggraph-2026
|
| 12 |
---
|
| 13 |
|
| 14 |
+
# S2V-Net for NeuralSketch2Surf
|
| 15 |
|
| 16 |
+
This repository hosts the pretrained S2V-Net weights used by **NeuralSketch2Surf: Fast Neural Surfacing of Unoriented 3D Sketches**.
|
| 17 |
|
| 18 |
+
S2V-Net reconstructs closed surfaces from sparse, unoriented 3D sketch curves. The model predicts a `112^3` volumetric occupancy field from voxelized sketch strokes; the final mesh is extracted with Marching Cubes and can be refined with the smoothing tool from the project repository.
|
|
|
|
|
|
|
| 19 |
|
| 20 |
+

|
| 21 |
+

|
| 22 |
+

|
| 23 |
|
| 24 |
+
## Model
|
|
|
|
|
|
|
| 25 |
|
| 26 |
+
- **Input:** voxelized 3D sketch strokes on a `112^3` grid.
|
| 27 |
+
- **Output:** binary surface occupancy probabilities.
|
| 28 |
+
- **Backbone:** SwinUNETR-style 3D transformer for global shape inference.
|
| 29 |
+
- **Refinement:** lightweight 3D residual module for local boundary correction.
|
| 30 |
+
- **Use case:** interactive sketch-based surface reconstruction from raw 3D strokes.
|
| 31 |
|
| 32 |
+
## Notes
|
|
|
|
|
|
|
|
|
|
| 33 |
|
| 34 |
+
- The model is trained for closed-surface reconstruction.
|
| 35 |
+
- Very thin structures may be limited by the `112^3` voxel resolution.
|
| 36 |
|
| 37 |
## Citation
|
| 38 |
|
| 39 |
+
If you use these weights, please cite:
|
| 40 |
|
| 41 |
```bibtex
|
| 42 |
+
@article{neuralsketch2surf2026,
|
| 43 |
+
title = {NeuralSketch2Surf: Fast Neural Surfacing of Unoriented 3D Sketches},
|
| 44 |
+
author = {Ye, Hongsheng and Sureshkumar, Anandhu and Wang, Zhonghan and Cani, Marie-Paule and Hahmann, Stefanie and Bonneau, Georges-Pierre and Parakkat, Amal Dev},
|
| 45 |
+
journal = {ACM Transactions on Graphics (Proceedings of SIGGRAPH)},
|
| 46 |
+
year = {2026}
|
| 47 |
+
}
|
| 48 |
+
```
|