In writing tracking outputs to tracklets.txt
What kind of predctions would be removed by these lines?
if len(tracks)<args.min_track_length:if int(track[1])<=0 or int(track[2])<=0 or int(track[3]-track[1])<=1 or int(track[4]-track[2])<=1:
Since there is no comment in the code, the meanings of track[0],track[1],track[2],track[3], etc are not obvious. Would you mind providing some info?
Thank you so much!!
In writing tracking outputs to tracklets.txt What kind of predctions would be removed by these lines?
if len(tracks)<args.min_track_length:
if int(track[1])<=0 or int(track[2])<=0 or int(track[3]-track[1])<=1 or int(track[4]-track[2])<=1:
Since there is no comment in the code, the meanings of track[0],track[1],track[2],track[3], etc are not obvious. Would you mind providing some info? Thank you so much!!