From 0a0132c738472c294c09d7160bc37f44f5bab4b9 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Fri, 6 Oct 2017 15:08:18 +0200 Subject: [PATCH] Update comment --- bob/bio/vein/preprocessor/mask.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/bio/vein/preprocessor/mask.py b/bob/bio/vein/preprocessor/mask.py index 7c449ae..bc42e3a 100644 --- a/bob/bio/vein/preprocessor/mask.py +++ b/bob/bio/vein/preprocessor/mask.py @@ -624,7 +624,7 @@ class WatershedMask(Masker): markers_fg = numpy.where(predictions>=self.foreground_threshold, 255, 0) markers_fg = skimage.morphology.opening(markers_fg, selem=selector) - # avoids most important finger borders are loaded with markers + # avoids markers on finger borders selector = skimage.morphology.disk(radius=2) markers_fg = skimage.morphology.erosion(markers_fg, selem=selector) -- GitLab