我想使用 Google Vision API 进行标签检测。但我想减少标签百分比,但我不知道该怎么做。有人可以帮助我吗?我正在使用一个样本。我正在使用 google 提供的 android 示例 这是代码:
除此之外,它还显示了结果:
// add the features we want
annotateImageRequest.setFeatures(new ArrayList<Feature>() {{
Feature labelDetection = new Feature();
labelDetection.setType("LABEL_DETECTION");
labelDetection.setMaxResults(10);
add(labelDetection);
}});