8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

在加载照片时,路径应该是路径类或 io.BytesIO,而不是'

Arjee 1月前

8 0

我正在尝试将照片加载到 ML 项目,但出现错误:路径应该是路径类或 io.BytesIO,而不是def load_image_pixels(文件名,形状):#...

我正在尝试将照片加载到 ML 项目,但出现错误:路径应该是路径类或 io.BytesIO,而不是

def load_image_pixels(filename, shape):
 # load the image to get its shape
 image = load_img(filename)
 width, height = image.size
 # load the image with the required size
 image = load_img(filename, target_size=shape)
 # convert to numpy array
 image = img_to_array(image)
 # scale pixel values to [0, 1]
 image = image.astype('float32')
 image /= 255.0
 # add a dimension so that we have one sample
 image = expand_dims(image, 0)
 return image, width, height


photo_filename = Image.open(r'C:\ML\Pies.jpg')
# define the expected input shape for the model
input_w, input_h = 167, 221
# load and prepare image
image, image_w, image_h = load_image_pixels(photo_filename, (net_w, net_w))

我看到照片已加载,但函数无法处理它。如何解决这个问题。

在我工作的其他代码中,以这种方式打开的图像可以像将图像转换为数组然后对其进行处理一样进行处理。

image = Image.open(r'C:\ML\Pies.jpg')
image = np.array(image)
帖子版权声明 1、本帖标题:在加载照片时,路径应该是路径类或 io.BytesIO,而不是'
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Arjee在本站《python》版块原创发布, 转载请注明出处!
最新回复 (0)
返回
作者最近主题: