We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7de50ca commit 200888cCopy full SHA for 200888c
pyproject.toml
@@ -27,6 +27,7 @@ dependencies = [
27
"mip >=1.16rc0",
28
"napari >=0.4.18",
29
"numba >=0.57.0",
30
+ "numcodecs <0.16.0", # required by zarr<3 https://github.com/zarr-developers/zarr-python/issues/2963
31
"ome-zarr >= 0.9.0",
32
"pandas >=2.0.1",
33
"pillow >=10.0.0",
ultrack/core/solve/sqltracking.py
@@ -118,6 +118,9 @@ def __call__(
118
if use_annotations:
119
print("Fixing annotations ...")
120
self.fix_annotations(index)
121
+ elif use_ground_truth_match:
122
+ print("Fixing ground truth matches ...")
123
+ self.fix_ground_truth_matches(index)
124
125
print("Solving ILP ...")
126
self.solve()
0 commit comments