We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22158f5 commit 4393c79Copy full SHA for 4393c79
src/py_eddy_tracker/featured_tracking/area_tracker.py
@@ -11,7 +11,7 @@ def tracking(self, other):
11
i, j, c = self.match(other, intern=False)
12
cost_mat = ma.empty(shape, dtype="f4")
13
cost_mat.mask = ma.ones(shape, dtype="bool")
14
- m = c > 0
+ m = c > .2
15
i, j, c = i[m], j[m], c[m]
16
cost_mat[i, j] = 1 - c
17
0 commit comments