Skip to content

Commit bf32083

Browse files
committed
Fixes #194
1 parent 5e8edb3 commit bf32083

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ethoscope/trackers/adaptive_bg_tracker.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -441,12 +441,12 @@ def _track(self, img, grey, mask, t):
441441

442442
#normalised position
443443
#this does not really need to be normalised because the image size does not change between frames
444-
#pos = (x + 1.0j * y) / w_im
445-
#xy_dist = round(log10(1./float(w_im) + abs(pos - self._old_pos))*1000)
444+
pos = (x + 1.0j * y) / w_im
445+
xy_dist = round(log10(1./float(w_im) + abs(pos - self._old_pos))*1000)
446446

447447
#non normalised
448-
pos = x + 1.0j * y # Keep position without normalization
449-
xy_dist = round(log10(abs(pos - self._old_pos) + 1) * 1000) # Add 1 to avoid log(0)
448+
#pos = x + 1.0j * y # Keep position without normalization
449+
#xy_dist = round(log10(abs(pos - self._old_pos) + 1) * 1000) # Add 1 to avoid log(0)
450450

451451
self._old_pos = pos
452452

0 commit comments

Comments
 (0)