You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, noticed that for the base_tracker process_video function, the input video path is optionally a string or a Path. I was trying to use a string, but ran into an error with the if use_tqdm bool, where the line desc=f"processing video: {input_video_filepath.name}" fails, because the .name function only works with a Path, not a string. I'm happy to make a fix, but wasn't sure if you'd rather it be changing what the description line of tqdm would be, or to change the type hint to be just a string.
The text was updated successfully, but these errors were encountered:
Hey, noticed that for the base_tracker
process_video
function, the input video path is optionally astring
or aPath
. I was trying to use a string, but ran into an error with theif use_tqdm
bool, where the linedesc=f"processing video: {input_video_filepath.name}"
fails, because the.name
function only works with a Path, not a string. I'm happy to make a fix, but wasn't sure if you'd rather it be changing what the description line oftqdm
would be, or to change the type hint to be just a string.The text was updated successfully, but these errors were encountered: