MCPcopy Create free account
hub / github.com/Vegetebird/GraphMLP / __init__

Method __init__

demo/lib/sort/sort.py:168–175  ·  view source on GitHub ↗

Sets key parameters for SORT

(self, max_age=1, min_hits=3)

Source from the content-addressed store, hash-verified

166
167class Sort(object):
168 def __init__(self, max_age=1, min_hits=3):
169 """
170 Sets key parameters for SORT
171 """
172 self.max_age = max_age
173 self.min_hits = min_hits
174 self.trackers = []
175 self.frame_count = 0
176
177 def update(self, dets):
178 """

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected