mirror of
https://github.com/wassname/Pointnet2_PyTorch.git
synced 2026-06-27 16:00:07 +08:00
5 lines
155 B
Python
5 lines
155 B
Python
import os.path as osp
|
|
import sys
|
|
sys.path = [osp.join(osp.dirname(__file__), 'utils')] + sys.path
|
|
import pointnet2_modules, pointnet2_utils, pytorch_utils
|