SCARF
SCARF copied to clipboard
ImportError: DLL load failed while importing standard_rasterize_cuda: 找不到指定的模块。
Hi, @yfeng95
I followed the requirements in INSTALL.md and compiled the .cpp file, but I always get ImportError: DLL load failed while importing standard_rasterize_cuda: Cannot find specified module. I have tried many ways, but none of them work. Do you have any suggestions? I look forward to your reply and thank you very much.
you can change standard rasterizer type to pytorch3d to solve this problem
you can change standard rasterizer type to pytorch3d to solve this problem Hi, @LeeBeen1 I followed your suggestion and set the rasterizer type to PyTorch3D, but it still throws an error when running. Do you have any suggestions for modification?
I am looking forward to your reply, thank you for your guidance.
background = F.interpolate(background, [512, 512]) To fix this, I added this line.
background = F.interpolate(background, [512, 512])To fix this, I added this line.
Hi, @LeeBeen1 Thank you very much, now the code can run, thank you for your patient answer.