We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bac8495 commit 23f051aCopy full SHA for 23f051a
src/py/dental_model_seg.py
@@ -34,12 +34,13 @@
34
from vtk.util.numpy_support import vtk_to_numpy, numpy_to_vtk
35
import sys
36
import platform
37
-system = platform.system()
38
-if system == 'Windows':
39
- code_path = '\\'.join(os.path.dirname(os.path.abspath(__file__)).split('\\')[:-1])
40
-else:
41
- code_path = '/'.join(os.path.dirname(os.path.abspath(__file__)).split('/')[:-1])
42
-sys.path.append(code_path)
+
+# system = platform.system()
+# if system == 'Windows':
+# code_path = '\\'.join(os.path.dirname(os.path.abspath(__file__)).split('\\')[:-1])
+# else:
+# code_path = '/'.join(os.path.dirname(os.path.abspath(__file__)).split('/')[:-1])
43
+# sys.path.append(code_path)
44
45
import utils
46
import post_process
0 commit comments