diff --git a/README.md b/README.md index 5de6752..c848d4e 100644 --- a/README.md +++ b/README.md @@ -163,6 +163,20 @@ python launch.py --config configs/dreamcraft3d-coarse-nerf.yaml --train system.p ## Tips - **Memory Usage**. We run the default configs on 40G A100 GPUs. For reducing memory usage, you can reduce the rendering resolution of NeuS by ```data.height=128 data.width=128 data.random_camera.height=128 data.random_camera.width=128```. You can also reduce resolution for other stages in the same way. +## Export Meshes +You can export the textured mesh obj using the following scipt: +```sh +# this uses default mesh-exporter configurations which exports obj+mtl +python launch.py --config path/to/trial/dir/configs/parsed.yaml --export --gpu 0 resume=path/to/trial/dir/ckpts/last.ckpt system.exporter_type=mesh-exporter +``` +
+ +Visualization of the example OBJ File. + +

+ +

+
## Todo diff --git a/assets/mesh_meshlab.jpg b/assets/mesh_meshlab.jpg new file mode 100644 index 0000000..52150ed Binary files /dev/null and b/assets/mesh_meshlab.jpg differ