在AS里按官方案例写的调用接口函数:
// 调用接口
String path = "raw/hanbao.png";
JSONObject res = client.objectDetect(path, new HashMap());
try {
Log.v("AAA",res.toString(2));
} catch (JSONException e) {
e.printStackTrace();
}
String path = "raw/hanbao.png";
JSONObject res = client.objectDetect(path, new HashMap());
try {
Log.v("AAA",res.toString(2));
} catch (JSONException e) {
e.printStackTrace();
}
报错:
05-16 23:38:16.046 14422-14422/com.example.dante.ai_project V/AAA: {
"error_code": "SDK102",
"error_msg": "read image file error"
}
"error_code": "SDK102",
"error_msg": "read image file error"
}
在eclipse java开发里是好的 换成Android就不行了 求解释
收藏
点赞
0
个赞
请登录后评论
TOP
切换版块
我也是有这个问题
Android好像调用不起来SDK,我用的是api
写个绝对路径试试
这个问题官方技术支持不回复下吗?我也是在Intelligent IDEA中构建普通的java工程调用OK,放到Android环境下就报这个错误。
手动顶