Open shenggedeqiang opened 1 year ago
Hi, you could adjust the --pipeline.model.sdf-field.bias 0.3
to some smaller value or you could create a mask for your data and use the mask loss to supervise the sdf field.
thanks a lot ! when I changed the "pipeline.model.sdf-field.bias" to 0.2, I got even worse result: I also created mask for every pics, and setted the "has_foreground_mask": true, but still can't get good mesh😂
"How did you solve this problem?" thanks
When extracting mesh, try this ns-extract-mesh --load-config config.yml --resolution 2048--marching-cube-threshold 0.001 --create-visibility-mask True --output-path meshes/mesh.ply
I used my own object images (segmented) with neus-facto,but I got bad mesh result like this:
my process: 1、ns-process-data images --data data/xxx --output-dir outdata/xxx 2、python scripts/datasets/process_nerfstudio_to_sdfstudio.py --data outdata/xxx --output-dir customdata/xxx --data-type colmap --scene-type object 3、ns-train neus-facto --pipeline.model.sdf-field.inside-outside False --pipeline.model.background-model mlp --trainer.max-num-iterations 20000 --vis viewer --experiment-name neus-facto-xxx --pipeline.model.sdf-field.bias 0.3 --pipeline.model.num-neus-samples-per-ray 96 sdfstudio-data --data customdata/xxx 4、ns-extract-mesh --load-config xxx/config.yml --output-path meshes/neus-facto-xxx.ply
Is there any parameter to pay attention to?