We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71ab414 commit f1bed45Copy full SHA for f1bed45
movement/io/save_bboxes.py
@@ -65,15 +65,16 @@ def to_via_tracks_file(
65
... )
66
67
Export a ``movement`` bounding boxes dataset as a VIA-tracks CSV file,
68
- with image filenames following the format ``frame_{frame_number}.jpg``
+ with image filenames following the format ``frame-<frame_number>.jpg``
69
and the track IDs derived from the list of sorted individuals:
70
>>> save_boxes.to_via_tracks_file(
71
... ds,
72
... "/path/to/output.csv",
73
- ... image_file_prefix="frame_",
+ ... image_file_prefix="frame-",
74
... image_file_suffix=".jpg",
75
76
77
+
78
"""
79
# Validate file path and dataset
80
file = _validate_file_path(file_path, expected_suffix=[".csv"])
0 commit comments