Skip to content

Commit

Permalink
🩼
Browse files Browse the repository at this point in the history
  • Loading branch information
vovaf709 committed Jun 4, 2024
1 parent 4c2d199 commit 688f4be
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion imops/morphology.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@
from edt import edt
from scipy.ndimage import distance_transform_edt as scipy_distance_transform_edt, generate_binary_structure
from scipy.ndimage._nd_image import euclidean_feature_transform
from scipy.ndimage.morphology import _ni_support


try:
from scipy.ndimage._morphology import _ni_support
except ImportError:
from scipy.ndimage.morphology import _ni_support

from skimage.morphology import (
binary_closing as scipy_binary_closing,
binary_dilation as scipy_binary_dilation,
Expand Down

0 comments on commit 688f4be

Please sign in to comment.