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):