标签: deep-learning torch
重现这一点:
require 'image' img = image.load('input_pipe') image.display(img)
在另一个终端上,运行:
mkfifo input_pipe cat <image_file> > input_pipe
请注意,调用cat <image_file> > input_pipe一次不会加载图片。你必须打两次电话。我的猜测是image.load打开文件两次。任何帮助/替代方案将不胜感激。
cat <image_file> > input_pipe
image.load
答案 0 :(得分:0)
回答here。显然,image.load()打开图像文件以找出文件类型,然后再次打开它以调用相应的图像加载器,例如image.loadJPG()
image.load()
image.loadJPG()