1 回答
TA贡献1824条经验 获得超8个赞
代码不完整,因为我还应该进行下采样,我刚刚完成输入,当我评论“有效”时,我的意思是@Eran 的评论帮助我正确地引用了我正在流式传输的文件,这是输入代码到目前为止有效,不需要已经对我投反对票了......
public void downsampling(String inputPath, String outputPath) {
ArrayList<BufferedImage> inputSequence = new ArrayList<BufferedImage>();
try (Stream<Path> paths = Files.walk(Paths.get(inputPath))) {
paths
.forEach(x -> {
try {
inputSequence.add(ImageIO.read((InputStream) x));
} catch (IOException e) {
e.printStackTrace();
}
});
} catch (IOException e) {
e.printStackTrace();
}
}
添加回答
举报