我正在尝试通过示例代码在Java中创建对象检测算法
here。
但是在代码中图像值是硬编码的,这样我就可以自己传递图像位置了。
const char * imgInFile = "/sdcard/nonfree/img1.jpg";// Need to pass custom values
const char * imgOutFile = "/sdcard/nonfree/img1_result.jpg";
谢谢
最佳答案
当然,在Java中使用
private String imgInFile;
private String imgOutFile;
然后,要么从输入文件中读取这些值,要么从运行它时传递给应用程序的参数中获取它们。