gpt4 book ai didi

android - 将图像数组从外部目录读取到 android 中的 MAT 对象中

转载 作者:太空宇宙 更新时间:2023-11-03 21:37:16 25 4
gpt4 key购买 nike

如何将存储在 SD 卡中的图像数组读取到 MAT 对象数组?我想像 this 中那样做类似的 imread发布,但用于图像数组

最佳答案

File directoyOfMatFiles; // it points to the directory that contains mat files
File[] contentOfDirectoyOfMatFiles = directoyOfMatFiles.listFiles();
ArrayList<Mat> mats = new ArrayList<Mat>();
for (File f : contentOfDirectoyOfMatFiles) {
Mat m = Highgui.imread(f.getAbsolutePath());
mats.add(m);
}

关于android - 将图像数组从外部目录读取到 android 中的 MAT 对象中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20076366/

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