Skip to content

Commit d618f21

Browse files
authored
patch division by zero (#122)
1 parent 0d12148 commit d618f21

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/ethoscope/trackers/adaptive_bg_tracker.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,10 @@ def _pre_process_input_minimal(self, img, mask, t, darker_fg=True):
288288
#
289289
mean = cv2.mean(self._buff_grey, mask)
290290

291-
scale = 128. / mean[0]
291+
try:
292+
scale = 128. / mean[0]
293+
except ZeroDivisionError:
294+
raise NoPositionError
292295

293296
cv2.multiply(self._buff_grey, scale, dst = self._buff_grey)
294297

@@ -508,4 +511,4 @@ def _track(self, img, grey, mask,t):
508511

509512

510513
self._previous_shape=np.copy(hull)
511-
return [out]
514+
return [out]

0 commit comments

Comments
 (0)