From 65bb11c7ed2625281a96798e6f7ecc98f03d5b4a Mon Sep 17 00:00:00 2001 From: Jacob Date: Wed, 19 Apr 2023 16:56:21 +0200 Subject: [PATCH] local --- clean_python/extractors.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/clean_python/extractors.py b/clean_python/extractors.py index 234b7af..7309914 100644 --- a/clean_python/extractors.py +++ b/clean_python/extractors.py @@ -81,6 +81,11 @@ class Rect_Evaluator(Evaluator): maske_low = np.min(ev_points) >= self.mask maske_high = np.max(ev_points) <= self.mask mask[np.logical_and(maske_high, maske_low)] = nc + + plt.figure() + plt.imshow(mask) + plt.figure() + plt.imshow(self.mask) return mask def gen_mask_helper(self, img: FFT):