scipy.signal not defined, but works after importing skimage
Advertisements I would like to use scipy.signal.convolve2d() function from SciPy, but signal is undefined: >>> import scipy … >>> conv = scipy.signal.convolve2d(data, kernel, mode="same") Error: Traceback (most recent call last): File "test.py", line n, in <module> conv = scipy.signal.convolve2d(data, kernel, mode="same") AttributeError: module ‘scipy’ has no attribute ‘signal’. But when I add skimage import: from… Read More scipy.signal not defined, but works after importing skimage