facebookresearch / pifuhd

High-Resolution 3D Human Digitization from A Single Image.
Other
9.49k stars 1.44k forks source link

No results found #161

Open MhmdOdoo opened 2 years ago

MhmdOdoo commented 2 years ago

Hello, I am running the quick test part to test the model on an input image of mine and everything is running without any errors but I can't find any results when finishing the steps. Furthermore, he says that the result should be found in the results folder but there isn't any. How can I solve this problem please?

marcbaetica commented 2 years ago

I did some digging and found the issue. The issue is with the newer versions of scikit-image package not supporting the marching_cubes_lewiner method. Change line 77 in https://github.com/facebookresearch/pifuhd/blob/main/lib/mesh_util.py: From: verts, faces, normals, values = measure.marching_cubes_lewiner(sdf, thresh) To: verts, faces, normals, values = measure.marching_cubes(sdf, thresh)

hanchaoyuan commented 2 years ago

it works.thank you。