作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 google colab 运行 python 代码并尝试缩小图像。
from keras.layers import Lambda
import tensorflow as tf
from skimage import data, io, filters
import numpy as np
from numpy import array
from numpy.random import randint
from scipy.misc import imresize
import os
import sys
import matplotlib.pyplot as plt
plt.switch_backend('agg')
# Takes list of images and provide LR images in form of numpy array
def lr_images(images_real , downscale):
images = []
for img in range(len(images_real)):
images.append(imresize(images_real[img],[images_real[img].shape[0]//downscale,images_real[img].shape[1]//downscale], interp='bicubic', mode=None))
images_lr = array(images)
return images_lr
from scipy.misc import imresize ImportError: cannot import name 'imresize'
最佳答案
它已被弃用。
使用 简历2 改为调整大小功能
import cv2
size = (80,80)
cv2.resize(img, size)
关于python - 当此函数从 scipy.misc 导入时,如何修复 "cannot import name ' imresize' 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56260998/
我是一名优秀的程序员,十分优秀!