Syntax Error When Running compute_coordinates_for_video.py
eric07109 opened this issue · 2 comments
eric07109 commented
ronghui19 commented
for item in tqdm(img_list): img = imread(os.path.join(img_dir, item)) cord = cordinates_from_image_file(img, model=model) pose_cords.append(cord) color,_ = draw_pose_from_cords(cord, im_shape) imsave(os.path.join(pose_dir, item), color)
dklingmann commented
There are several typos in compute_coordinates_for_video.py
While a SyntaxError is raised, the issue is in the previous line: line 259 is missing a ')'.
Just add the closing bracket: img = imread(os.path.join(img_dir, item))