|
|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
- import scipy.ndimage as nd
- import matplotlib.pyplot as plt
- image = nd.imread("猫.jpg")
- plt.imshow(image)
- plt.show()
复制代码- ---------------------------------------------------------------------------
- AttributeError Traceback (most recent call last)
- <ipython-input-90-2bf8f74853cd> in <module>
- 1 import scipy.ndimage as nd
- 2 import matplotlib.pyplot as plt
- ----> 3 image = nd.imread("猫.jpg")
- 4 plt.imshow(image)
- 5 plt.show()
- AttributeError: module 'scipy.ndimage' has no attribute 'imread'
复制代码 有大佬可以帮我看看哪里出了问题吗
|
|