xmrt commited on
Commit
32a21bf
·
1 Parent(s): c8eb1b3

Build error fix

Browse files
Files changed (1) hide show
  1. main.py +3 -3
main.py CHANGED
@@ -95,12 +95,12 @@ def infer(video, check):
95
  vis_out_dir = str(uuid.uuid4())
96
  inferencer = inferencers[i] # 'hand', 'human , device='cuda'
97
 
98
- print("[INFO]: Running inference!")
99
- out_file = poses(inferencer, video, vis_out_dir)
100
-
101
  if i == "Detect and track":
102
  out_file = show_tracking(video, vis_out_dir)
103
 
 
 
 
104
  out_files.append(out_file)
105
 
106
  return out_files
 
95
  vis_out_dir = str(uuid.uuid4())
96
  inferencer = inferencers[i] # 'hand', 'human , device='cuda'
97
 
 
 
 
98
  if i == "Detect and track":
99
  out_file = show_tracking(video, vis_out_dir)
100
 
101
+ print("[INFO]: Running inference!")
102
+ out_file = poses(inferencer, video, vis_out_dir)
103
+
104
  out_files.append(out_file)
105
 
106
  return out_files