chaoxu commited on
Commit
c00d72e
1 Parent(s): 7ebe61e

ply2glb path fix

Browse files
Files changed (1) hide show
  1. launch.py +1 -1
launch.py CHANGED
@@ -114,7 +114,7 @@ def preprocess_imgs(tmp_dir, input_img, idx=None):
114
 
115
 
116
  def ply_to_glb(ply_path):
117
- script_path = "../utils/ply2glb.py"
118
  result = subprocess.run(
119
  ["python", script_path, "--", ply_path],
120
  capture_output=True,
 
114
 
115
 
116
  def ply_to_glb(ply_path):
117
+ script_path = f"{code_dir}/ply2glb.py"
118
  result = subprocess.run(
119
  ["python", script_path, "--", ply_path],
120
  capture_output=True,