Skip to content

Commit f9f80f0

Browse files
author
arch
committed
change names
1 parent 4a4c043 commit f9f80f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

funscript_editor/algorithms/funscriptgenerator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -615,15 +615,15 @@ def tracking(self) -> str:
615615
for tracker_number in range(self.params.number_of_trackers):
616616
(woman_tracker_status, bbox_woman[tracker_number]) = trackers_woman[tracker_number].result()
617617
if woman_tracker_status != StaticVideoTracker.Status.OK:
618-
status = 'Woman ' + woman_tracker_status
618+
status = '{}.1 '.format(tracker_number+1) + woman_tracker_status
619619
delete_last_predictions = (self.params.skip_frames+1)
620620
stop_tracking = True
621621
break
622622

623623
if self.params.track_men:
624624
(men_tracker_status, bbox_men[tracker_number]) = trackers_men[tracker_number].result()
625625
if men_tracker_status != StaticVideoTracker.Status.OK:
626-
status = 'Men ' + men_tracker_status
626+
status = '{}.2 '.format(tracker_number+1) + men_tracker_status
627627
delete_last_predictions = (self.params.skip_frames+1)
628628
stop_tracking = True
629629
break

0 commit comments

Comments
 (0)