gpt4 book ai didi

python - 如何将n张图像(jpg格式)转换为.p(pickle)格式?

转载 作者:行者123 更新时间:2023-12-01 01:34:58 25 4
gpt4 key购买 nike

我有一个文件夹abc,其中包含.jpg 格式的图像。我需要将这些图像转换为单个 xyz.p (pickled)文件。如何 pickle 这些图像?

我想实现这样的事情:

> import pickle  
> training_file = "dataset/train.p"
> with open(training_file, mode='rb') as f:
> train = pickle.load(f) X_train, y_train = train['features'], train['labels']

最佳答案

请尝试这个:

file = open('data.pkl', 'wb') 
pickle.dump(image, file)
file.close()

关于python - 如何将n张图像(jpg格式)转换为.p(pickle)格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52478792/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com