Skip to content
Snippets Groups Projects
Commit 3605fdc4 authored by Cribellier, Antoine's avatar Cribellier, Antoine
Browse files

Small bug fixes

parent 2b09996c
No related branches found
No related tags found
1 merge request!9Bug fixes for the various test functions
......@@ -58,14 +58,18 @@ class Tracker2D:
"""
Class to track 2d coordinates of blobs in images
"""
def __init__(self, image):
def __init__(self, images, frames):
"""
Args:
images: List of images (numpy arrays)
frames: List of frame numbers (int)
"""
self.show_plot = False
self.images, self.frames = [], []
self.images = images # type: List[np.array()]
self.frames = frames # type: List[int]
self.points = defaultdict(list)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment