-
Notifications
You must be signed in to change notification settings - Fork 47
Description
Firstly, big thanks to @weiyuewang @Xharlie @laughtervv for pushing the frontier of 3D reconstruction again further into the greater states. I really like your proposed metric representation using SDF and the strategic of combining the features from both global and local to recover granular details. These are truly brilliant ideas!
I have been trying to reproduce some of the outputs in your paper from using the online product image such as the one below.

I am able to get the exact same image but unable to reproduce the mesh in the same quality as one in the paper...


Here is the code I run. The only change I have made is the image size (changed to 224x224). I have also try using the default value 137, but the result doesn't change much.
python -u demo/demo.py \
--cam_est \
--log_dir checkpoint/SDF_DISN \
--cam_log_dir cam_est/checkpoint/cam_DISN \
--img_feat_twostream \
--img_h 224 --img_w 224 \
--sdf_res 64
Did I miss anything?