microproduct/deformation-sentiral/smallbaselineApp/skimage/morphology/greyreconstruct.py

10 lines
237 B
Python
Raw Normal View History

2023-08-28 10:17:29 +00:00
import warnings
from .grayreconstruct import reconstruction
warnings.warn(
"Importing from skimage.morphology.greyreconstruct is deprecated. "
"Please import from skimage.morphology instead.",
FutureWarning, stacklevel=2
)