Skip to content

Commit 200888c

Browse files
authored
Added missing fix ground truth matches statement (#207)
* added missing fix ground truth matches statement * pin numcodecs because of zarr v2
1 parent 7de50ca commit 200888c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ dependencies = [
2727
"mip >=1.16rc0",
2828
"napari >=0.4.18",
2929
"numba >=0.57.0",
30+
"numcodecs <0.16.0", # required by zarr<3 https://github.com/zarr-developers/zarr-python/issues/2963
3031
"ome-zarr >= 0.9.0",
3132
"pandas >=2.0.1",
3233
"pillow >=10.0.0",

ultrack/core/solve/sqltracking.py

+3
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,9 @@ def __call__(
118118
if use_annotations:
119119
print("Fixing annotations ...")
120120
self.fix_annotations(index)
121+
elif use_ground_truth_match:
122+
print("Fixing ground truth matches ...")
123+
self.fix_ground_truth_matches(index)
121124

122125
print("Solving ILP ...")
123126
self.solve()

0 commit comments

Comments
 (0)