pointnet.pytorch
pointnet.pytorch copied to clipboard
OSError: no file with expected extension
Traceback (most recent call last):
File "C:/Users/123456/Desktop/PointNet/pointnet_pytorch-master_lingzhang1/show3d_balls.py", line 19, in
I have meet the same problem. Have you solved it?
I solved the problem by changing dll=np.ctypeslib.load_library('render_balls_so','.') into dll = np.ctypeslib.load_library('render_balls_so.so', '.')
I solved the problem by changing
dll=np.ctypeslib.load_library('render_balls_so','.')intodll = np.ctypeslib.load_library('render_balls_so.so', '.')
same problem here and the above workaround doesn't seem to work for me. maybe the issue is that I'm trying to run the code on google colab, but I can't be sure.
I solved the problem by changing
dll=np.ctypeslib.load_library('render_balls_so','.')intodll = np.ctypeslib.load_library('render_balls_so.so', '.')
Thanks a lot!!!
我通过
dll=np.ctypeslib.load_library('render_balls_so','.')改成解决了这个问题dll = np.ctypeslib.load_library('render_balls_so.so', '.')
我用此方法试过了,可是我这里行不通
I solved the problem by changing
dll=np.ctypeslib.load_library('render_balls_so','.')intodll = np.ctypeslib.load_library('render_balls_so.so', '.')
I've tried this on windows and it's been impossible. But I tried this solution on linux and it worked immediately.
I solved the problem by changing
dll=np.ctypeslib.load_library('render_balls_so','.')intodll = np.ctypeslib.load_library('render_balls_so.so', '.')I've tried this on windows and it's been impossible. But I tried this solution on linux and it worked immediately.
try to use absolute path like "home/xxx/pointnet.pytorch/utils/" instead of '.'