Update Blazepose_runsave.py

This commit is contained in:
David PAGNON 2023-02-20 18:04:45 +01:00 committed by GitHub
parent 9fcb40d255
commit 1f1ec93f11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,7 +77,7 @@ def save_to_csv_or_h5(kpt_list, output_folder, video_name, to_csv, to_h5):
if to_csv:
csv_file = os.path.join(output_folder, video_name+'.csv')
df.to_csv(csv_file, sep=',', index=True, line_terminator='\n')
df.to_csv(csv_file, sep=',', index=True, lineterminator='\n')
if to_h5:
h5_file = os.path.join(output_folder, video_name+'.h5')