Skip to content

Commit 8b728e9

Browse files
author
tongyao-zhu
committed
bug fix
1 parent 3eae3e0 commit 8b728e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demo/inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ def main():
315315
for keypoint in COCO_KEYPOINT_INDEXES.values():
316316
csv_headers.extend([keypoint+'_x', keypoint+'_y'])
317317

318-
csv_output_filename = os.path.join(args.outputDir, 'pose-data.csv')
318+
csv_output_filename = os.path.join(args.output_dir, 'pose-data.csv')
319319
with open(csv_output_filename, 'w', newline='') as csvfile:
320320
csvwriter = csv.writer(csvfile)
321321
csvwriter.writerow(csv_headers)

0 commit comments

Comments
 (0)