本文介绍了如何在一个应用程序中结合所有Firebase ML套件API?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望如果选择了一张图像,则一次只能检测到一张图像中的标签,文本和面部.

I want that if one image is selected it detects Label, text and faces in single image at one time only.

推荐答案

只需一次调用图像文件上的所有函数,然后使用.

Just call all of the functions on your image file at once, then combine the results using something like zip in RXJava.

或者,您可以将结果嵌套(例如,将 FirebaseVision.getInstance().onDeviceTextRecognizer.processImage(image)嵌套在另一个函数的 onSuccessListener 内),需要更长的时间来完成所有操作.

Alternatively, you could nest the results (e.g. call FirebaseVision.getInstance().onDeviceTextRecognizer.processImage(image) inside the onSuccessListener of another function), although this will take much longer to complete all.

如果您提供现有尝试的代码,StackOverflow可以提供进一步的帮助.

If you provide code of your existing attempts, StackOverflow can help further.

这篇关于如何在一个应用程序中结合所有Firebase ML套件API?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 22:59