Vision
class Vision : NSObjectA Firebase service that supports vision APIs.
-
Enables stats collection in ML Kit vision. The stats include API call counts, errors, API call durations, options, etc. No personally identifiable information is logged.
The setting is per
FirebaseApp, and therefore perVision, and it is persistent across launches of the app. It means if the user uninstalls the app or clears all app data, the setting will be erased. The best practice is to set the flag in each initialization.By default the logging is enabled. You have to specifically set it to false to disable logging.
Declaration
Swift
var isStatsCollectionEnabled: Bool { get set } -
Gets an instance of Firebase Vision service for the default Firebase app. The default Firebase app instance must be configured before calling this method; otherwise, raises FIRAppNotConfigured exception.
Declaration
Swift
class func vision() -> SelfReturn Value
A Firebase Vision service instance, initialized with the default Firebase app.
-
Gets an instance of Firebase Vision service for the custom Firebase app.
Declaration
Swift
class func vision(app: FIRApp) -> SelfParameters
appThe custom Firebase app used for initialization. Raises FIRAppInvalid exception if
appis nil.Return Value
A Firebase Vision service instance, initialized with the custom Firebase app.
-
Unavailable.
-
Gets a barcode detector with the given options.
Declaration
Swift
func barcodeDetector(options: FIRVisionBarcodeDetectorOptions) -> FIRVisionBarcodeDetectorParameters
optionsOptions containing barcode detector configuration.
Return Value
A barcode detector configured with the given options.
-
Gets a barcode detector with the default options.
Declaration
Swift
func barcodeDetector() -> FIRVisionBarcodeDetectorReturn Value
A barcode detector configured with the default options.
-
Gets a face detector with the given options.
Declaration
Swift
func faceDetector(options: FIRVisionFaceDetectorOptions) -> FIRVisionFaceDetectorParameters
optionsOptions for configuring the face detector.
Return Value
A face detector configured with the given options.
-
Gets a face detector with the default options.
Declaration
Swift
func faceDetector() -> FIRVisionFaceDetectorReturn Value
A face detector configured with the default options.
-
Gets an on-device image labeler with the given options.
Declaration
Swift
func onDeviceImageLabeler(options: FIRVisionOnDeviceImageLabelerOptions) -> FIRVisionImageLabelerParameters
optionsOptions for configuring the image labeler.
Return Value
An on-device image labeler configured with the given options.
-
Gets an on-device image labeler with the default options.
Declaration
Swift
func onDeviceImageLabeler() -> FIRVisionImageLabelerReturn Value
An on-device image labeler configured with the default options.
-
Gets an on-device text recognizer.
Declaration
Swift
func onDeviceTextRecognizer() -> FIRVisionTextRecognizerReturn Value
A text recognizer.
-
Gets a cloud text recognizer configured with the given options.
Declaration
Swift
func cloudTextRecognizer(options: FIRVisionCloudTextRecognizerOptions) -> FIRVisionTextRecognizerParameters
optionsOptions for configuring the cloud text recognizer.
Return Value
A text recognizer configured with the given options.
-
Gets a cloud text recognizer.
Declaration
Swift
func cloudTextRecognizer() -> FIRVisionTextRecognizerReturn Value
A text recognizer.
-
Gets a cloud document text recognizer configured with the given options.
Declaration
Swift
func cloudDocumentTextRecognizer(options: FIRVisionCloudDocumentTextRecognizerOptions) -> FIRVisionDocumentTextRecognizerParameters
optionsOptions for configuring the cloud document text recognizer.
Return Value
A document text recognizer configured with the given options.
-
Gets a cloud document text recognizer.
Declaration
Swift
func cloudDocumentTextRecognizer() -> FIRVisionDocumentTextRecognizerReturn Value
A document text recognizer.
-
Gets an instance of cloud landmark detector with the given options.
Declaration
Swift
func cloudLandmarkDetector(options: FIRVisionCloudDetectorOptions) -> FIRVisionCloudLandmarkDetectorParameters
optionsOptions for configuring the cloud landmark detector.
Return Value
A cloud landmark detector configured with the given options.
-
Gets an instance of cloud landmark detector with default options.
Declaration
Swift
func cloudLandmarkDetector() -> FIRVisionCloudLandmarkDetectorReturn Value
A cloud landmark detector configured with default options.
-
Gets an instance of cloud image labeler with the given options.
Declaration
Swift
func cloudImageLabeler(options: FIRVisionCloudImageLabelerOptions) -> FIRVisionImageLabelerParameters
optionsOptions for configuring the cloud image labeler.
Return Value
A cloud image labeler configured with the given options.
-
Gets an instance of cloud image labeler with default options.
Declaration
Swift
func cloudImageLabeler() -> FIRVisionImageLabelerReturn Value
A cloud image labeler configured with default options.