FirebaseMLVision Framework Reference

FIRVision


@interface FIRVision : NSObject

A 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 per Vision, 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

    Objective-C

    @property (nonatomic, assign, unsafe_unretained, readwrite,
              getter=isStatsCollectionEnabled) BOOL statsCollectionEnabled;
  • 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

    Objective-C

    + (nonnull instancetype)vision;

    Return 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

    Objective-C

    + (nonnull instancetype)visionForApp:(nonnull FIRApp *)app;

    Parameters

    app

    The custom Firebase app used for initialization. Raises FIRAppInvalid exception if app is nil.

    Return Value

    A Firebase Vision service instance, initialized with the custom Firebase app.

  • Unavailable.

    Declaration

    Objective-C

    - (nonnull instancetype)init;
  • Gets a barcode detector with the given options.

    Declaration

    Objective-C

    - (nonnull FIRVisionBarcodeDetector *)barcodeDetectorWithOptions:
        (nonnull FIRVisionBarcodeDetectorOptions *)options;

    Parameters

    options

    Options containing barcode detector configuration.

    Return Value

    A barcode detector configured with the given options.

  • Gets a barcode detector with the default options.

    Declaration

    Objective-C

    - (nonnull FIRVisionBarcodeDetector *)barcodeDetector;

    Return Value

    A barcode detector configured with the default options.

  • Gets a face detector with the given options.

    Declaration

    Objective-C

    - (nonnull FIRVisionFaceDetector *)faceDetectorWithOptions:
        (nonnull FIRVisionFaceDetectorOptions *)options;

    Parameters

    options

    Options for configuring the face detector.

    Return Value

    A face detector configured with the given options.

  • Gets a face detector with the default options.

    Declaration

    Objective-C

    - (nonnull FIRVisionFaceDetector *)faceDetector;

    Return Value

    A face detector configured with the default options.

  • Gets an on-device image labeler with the given options.

    Declaration

    Objective-C

    - (nonnull FIRVisionImageLabeler *)onDeviceImageLabelerWithOptions:
        (nonnull FIRVisionOnDeviceImageLabelerOptions *)options;

    Parameters

    options

    Options 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

    Objective-C

    - (nonnull FIRVisionImageLabeler *)onDeviceImageLabeler;

    Return Value

    An on-device image labeler configured with the default options.

  • Gets an on-device text recognizer.

    Declaration

    Objective-C

    - (nonnull FIRVisionTextRecognizer *)onDeviceTextRecognizer;

    Return Value

    A text recognizer.

  • Gets a cloud text recognizer configured with the given options.

    Declaration

    Objective-C

    - (nonnull FIRVisionTextRecognizer *)cloudTextRecognizerWithOptions:
        (nonnull FIRVisionCloudTextRecognizerOptions *)options;

    Parameters

    options

    Options for configuring the cloud text recognizer.

    Return Value

    A text recognizer configured with the given options.

  • Gets a cloud text recognizer.

    Declaration

    Objective-C

    - (nonnull FIRVisionTextRecognizer *)cloudTextRecognizer;

    Return Value

    A text recognizer.

  • Gets a cloud document text recognizer configured with the given options.

    Declaration

    Objective-C

    - (nonnull FIRVisionDocumentTextRecognizer *)
        cloudDocumentTextRecognizerWithOptions:
            (nonnull FIRVisionCloudDocumentTextRecognizerOptions *)options;

    Parameters

    options

    Options 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

    Objective-C

    - (nonnull FIRVisionDocumentTextRecognizer *)cloudDocumentTextRecognizer;

    Return Value

    A document text recognizer.

  • Gets an instance of cloud landmark detector with the given options.

    Declaration

    Objective-C

    - (nonnull FIRVisionCloudLandmarkDetector *)cloudLandmarkDetectorWithOptions:
        (nonnull FIRVisionCloudDetectorOptions *)options;

    Parameters

    options

    Options 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

    Objective-C

    - (nonnull FIRVisionCloudLandmarkDetector *)cloudLandmarkDetector;

    Return Value

    A cloud landmark detector configured with default options.

  • Gets an instance of cloud image labeler with the given options.

    Declaration

    Objective-C

    - (nonnull FIRVisionImageLabeler *)cloudImageLabelerWithOptions:
        (nonnull FIRVisionCloudImageLabelerOptions *)options;

    Parameters

    options

    Options 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

    Objective-C

    - (nonnull FIRVisionImageLabeler *)cloudImageLabeler;

    Return Value

    A cloud image labeler configured with default options.