AttributeError: module 'scipy.misc' has no attribute 'imresize'
时间: 2023-06-22 12:35:27 浏览: 171
这个问题通常出现在你使用的 Scipy 版本较新的情况下,因为 `scipy.misc.imresize` 已经在 Scipy 1.3.0 版本中被弃用了。如果你的 Scipy 版本高于 1.3.0,那么你需要使用其他的图像处理库,例如 PIL 或者 OpenCV。
如果你想继续使用 Scipy 的 `imresize` 函数,你可以降低 Scipy 的版本到 1.2.0 或者更早的版本。你可以使用以下命令来安装 Scipy 1.2.0 版本:
```
pip install scipy==1.2.0
```
请注意,降低 Scipy 版本可能会导致其他的依赖项出现问题,因此请谨慎操作。另外,建议使用其他的图像处理库以避免这个问题。
相关问题
attributeerror: module 'scipy.misc' has no attribute 'imresize'
这个错误消息表示在使用scipy库中的misc模块时,没有找到imresize这个属性/函数。这可能是因为imresize函数已经在新版本的scipy库中被移除了。建议您查找其他的图像缩放函数来代替imresize。
AttributeError: scipy.misc is deprecated and has no attribute imresize.
引用中提到了一个错误信息:AttributeError: module 'scipy.misc' has no attribute 'imresize',这意味着在scipy.misc模块中没有imresize属性。引用和进一步解释了这个问题:imresize函数在SciPy 1.0.0版本中已经被弃用,并且将在1.3.0版本中移除。取而代之的是使用Pillow库中的Image对象的resize方法来实现相同的功能。你可以使用以下代码来替代imresize函数的使用:
```python
import numpy as np
from PIL import Image
my_image = np.array(Image.fromarray(image).resize((64, 64)))
```
这样就可以避免使用已弃用的imresize函数并解决AttributeError错误。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [AttributeError: module 'scipy.misc' has no attribute 'imresize'等问题解决](https://blog.csdn.net/lly1122334/article/details/102383111)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *3* [scipy.misc is deprecated and has no attribute imresize](https://blog.csdn.net/weixin_45766582/article/details/131573556)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文