zerchen / AlignSDF

AlignSDF: Pose-Aligned Signed Distance Fields for Hand-Object Reconstruction, ECCV 2022
72 stars 10 forks source link

occur "do not support renderer in this machine" problem #14

Closed barrycxg closed 1 year ago

barrycxg commented 1 year ago

When i run the code, I occur the "do not support renderer in this machine". I find your code referencing this package in your networks/model.py. try: import soft_renderer as sr import soft_renderer.functional as srf except: print('do not support renderer in this machine') I want to consult how to install this package "soft_renderer".

zerchen commented 1 year ago

Hi,

Actually, this renderer is not used in the alignsdf paper. If you want to incorporate it in your own work, you could install it from SoftRas repo. You could follow their instructions to install this dependency.

Best, Zerui

barrycxg commented 1 year ago

Thanks for your reply and patience.