【发布时间】:2020-10-03 01:15:25
【问题描述】:
我正在使用来自 link 的代码。在 Windows 7 上使用 Python 3.6.5 运行程序。我的 scikit-image 版本 0.13.1
>>> image = data.astronaut()
>>> rows, cols, dim = image.shape
>>> print (rows, cols, dim)
512 512 3
>>> pyramid = tuple(pyramid_gaussian(image, downscale=2, multichannel=True))
TypeError: pyramid_gaussian() got an unexpected keyword argument 'multichannel'
【问题讨论】:
标签: python scikit-image