yfeng95 / SCARF

Other
252 stars 10 forks source link

ImportError: DLL load failed while importing standard_rasterize_cuda: 找不到指定的模块。 #14

Open Liu-xiaoyu11 opened 4 months ago

Liu-xiaoyu11 commented 4 months ago

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. image

LeeBeen1 commented 4 months ago

you can change standard rasterizer type to pytorch3d to solve this problem

Liu-xiaoyu11 commented 4 months ago

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? image I am looking forward to your reply, thank you for your guidance.

LeeBeen1 commented 4 months ago

background = F.interpolate(background, [512, 512]) To fix this, I added this line.

Liu-xiaoyu11 commented 4 months ago

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.