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
k = 0
ij = 0
if len(junk):
# decrease positions of positives based on the number of
# junk images appearing before them
ip = 0
while ip < len(pos):
while ij < len(junk) and pos[ip] > junk[ij]:
k += 1
ij += 1
pos[ip] = pos[ip] - k
ip += 1