remove type annotations in unused

pull/8/head
Konstantin Baierer 4 years ago
parent 87ef313502
commit 11315da683

@ -72,7 +72,7 @@ def color_images(seg, n_classes):
seg_img[:, :, 2] = segl * c
return seg_img
def cleaning_probs(probs: np.ndarray, sigma: float) -> np.ndarray:
def cleaning_probs(probs, sigma):
# Smooth
if sigma > 0.0:
return cv2.GaussianBlur(probs, (int(3 * sigma) * 2 + 1, int(3 * sigma) * 2 + 1), sigma)

Loading…
Cancel
Save