ValueError: 找不到以单图像模式写入指定文件的格式

Posted

技术标签:

【中文标题】ValueError: 找不到以单图像模式写入指定文件的格式【英文标题】:ValueError: Could not find a format to write the specified file in single-image mode 【发布时间】:2020-07-23 14:32:00 【问题描述】:

我正在尝试使用 skimage 包读取图像,然后对其进行裁剪并保存。 直到裁剪它工作正常。在保存时,它会抛出以下错误

ValueError: 找不到写入指定文件的格式 单图模式

下面是我的代码。非常感谢任何帮助。 谢谢

import os
import numpy as np
import matplotlib.pyplot as plt
import skimage
import dataloader
from utility import To_csv
path='D:\\beantech_Data\\objtect_detection'

def crop(img):
    return skimage.util.crop(img, ((0,500),(0,0),(0,0)))

images, boxes,  labels = dataloader.train_loader(path)

os.makedirs(os.path.join(path, 'train','cropped'), exist_ok=True)

for i in range(len(images)):
    croped_image = crop(images[i])
    skimage.io.imsave(os.path.join(path, 'train','cropped',f'imgstr(i)'), croped_image)
    box = boxes[i]
    To_csv(box, i,os.path.join(path, 'train','cropped'), Aug= True )

【问题讨论】:

【参考方案1】:

问题是,代码中没有给出文件格式,即(.png、.jpeg 等)。

通过更正这一行代码可以正常工作-

skimage.io.imsave(os.path.join(path, 'train','cropped',f'imgstr(i).png'), croped_image)

谢谢

【讨论】:

以上是关于ValueError: 找不到以单图像模式写入指定文件的格式的主要内容,如果未能解决你的问题,请参考以下文章

错误:无法写入字节码。该系统找不到指定的路径。 (os error 3). 编译基板节点模板时出错

ValueError:在 midi 中找不到子字符串

ValueError:在 draco.apps.home.models 中找不到函数 url

Django ValueError:找不到路径'ws/chat//'的路由

不同长度的pandas groupby元组-ValueError:在通过级别中找不到值:MultiIndex

pygraphviz ValueError:在路径中找不到程序点[重复]