报错
AttributeError: module 'scipy.misc' has no attribute 'imresize'
解决方法
使用skimage库
conda install scikit-image
注意,scipy.misc.imresize只对原图的第0和第1维度的size做改变,其他维度的size保持不变; 当参数为:
- int, percentage(百分比) of current size. 整数的时候是原图像的百分比。
- float, fraction(分数) of current size. 浮点数的时候是原图像的分数
- tupe, size of the output image (height,width).元组的时候是直接定义输出图像的长和宽,与原图的大小无关。
代码修改
- 情况1,2:
from skimage import transform
...
...
# img = np.float32(scipy.misc.imresize(img, ratio))
img = transform.resize(img,(int(img.shape[0]*ratio), int(img.shape[1]*ratio)))
...
...
- 情况3:
from skimage import transform
...
...
# img = np.float32(scipy.misc.imresize(img, hw))
img = transform.resize(img,hw)
...
...