到目前为止,我已经能够通过替换“图片”来“手动”处理图像
photo = ''directory/picture.jpg''
对于我正在处理的每张图像。
这是有效的,当然,但它很慢。
有任何想法吗?
我正在使用的代码:
from deepdreamer import model, load_image, recursive_optimize
import numpy as np
import PIL.Image
layer_tensor = ...
photo = "directory/picture.jpg"
img_result = load_image(filename='{}'.format(photo))
img_result = recursive_optimize(...)
img_result = np.clip(img_result, 0.0, 255.0)
img_result = img_result.astype(np.uint8)
result = PIL.Image.fromarray(img_result, mode='RGB')
result.save(photo)