我正在使用此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'
请提前帮助并表示感谢。
答案 0 :(得分:1)
您所指的链接显示了scikit-image 0.14dev(documentation)文档中的示例。但是,您使用的是版本0.13.1,在此版本中,参数multichannel不可用(documentation)。