Source code for pytrack.matching.matcher

[docs]class Matcher: """ Skeleton parent class to perform the matching operation. """ def __init__(self, G): self.G = G
[docs] def match(self, points): pass