使用Cloud时,每次在Label Detection中都会执行addOnFailure

时间:2019-03-05 06:06:43

标签: java android google-cloud-vision

不是针对所有Cloud Vision API(文本识别,标签检测,面部识别)的标签检测,在使用云实例时仅调用addOnFailure方法;

但是在使用设备实例时,它可以正常工作

以下是使用云实例进行标签检测的代码:

final ArrayList<student> stud=new ArrayList<>();
    if (c != null && c.getCount() > 0) {
     if (c.moveToFirst()) {
        do {
            student stu = new student();
            stu.id = c.getString(id);
            stu.name = c.getString(name);
            stu.age = c.getString(age);
            //you need to add the Student object stu not the 
          //ArrayList Object stud
          stud.add(stu);

        } while (c.moveToNext());
            mAdapter = new Adapter(stud);
            recyclerView.setAdapter(mAdapter);
    }
 }

1 个答案:

答案 0 :(得分:0)

我发现通过设置Google Cloud Console Payment for Cloud Vision API,成功方法正在调用